23 lines
326 B
PHP
Executable File
23 lines
326 B
PHP
Executable File
<?php
|
|
|
|
namespace frontend\modules\api;
|
|
|
|
/**
|
|
* api module definition class
|
|
*/
|
|
class Api extends \yii\base\Module
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public $controllerNamespace = 'frontend\modules\api\controllers';
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function init()
|
|
{
|
|
parent::init();
|
|
}
|
|
}
|