25 lines
391 B
PHP
25 lines
391 B
PHP
<?php
|
|
|
|
namespace frontend\modules\company;
|
|
|
|
/**
|
|
* company module definition class
|
|
*/
|
|
class Company extends \yii\base\Module
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public $controllerNamespace = 'frontend\modules\company\controllers';
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function init()
|
|
{
|
|
parent::init();
|
|
|
|
// custom initialization code goes here
|
|
}
|
|
}
|