first commit

This commit is contained in:
2023-11-21 19:51:44 +03:00
commit b87eb71ca7
254 changed files with 15630 additions and 0 deletions

24
backend/modules/order/Order.php Executable file
View File

@ -0,0 +1,24 @@
<?php
namespace app\modules\order;
/**
* order module definition class
*/
class Order extends \yii\base\Module
{
/**
* {@inheritdoc}
*/
public $controllerNamespace = 'app\modules\order\controllers';
/**
* {@inheritdoc}
*/
public function init()
{
parent::init();
// custom initialization code goes here
}
}