25 lines
		
	
	
		
			375 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			375 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();
 | 
						|
 | 
						|
        // custom initialization code goes here
 | 
						|
    }
 | 
						|
}
 |