24 lines
		
	
	
		
			385 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			385 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| 
 | |
| 
 | |
| namespace backend\modules\balance;
 | |
| /**
 | |
|  * card module definition class
 | |
|  */
 | |
| class Balance extends \yii\base\Module
 | |
| {
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     public $controllerNamespace = 'backend\modules\balance\controllers';
 | |
| 
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     public function init()
 | |
|     {
 | |
|         parent::init();
 | |
| 
 | |
|         // custom initialization code goes here
 | |
|     }
 | |
| } | 
