la_back/backend/modules/table/Table.php
2023-11-21 19:51:44 +03:00

25 lines
373 B
PHP
Executable File

<?php
namespace app\modules\table;
/**
* table module definition class
*/
class Table extends \yii\base\Module
{
/**
* {@inheritdoc}
*/
public $controllerNamespace = 'app\modules\table\controllers';
/**
* {@inheritdoc}
*/
public function init()
{
parent::init();
// custom initialization code goes here
}
}