You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					24 lines
				
				391 B
			
		
		
			
		
	
	
					24 lines
				
				391 B
			| 
											7 years ago
										 | <?php
 | ||
|  | /**
 | ||
|  |  * Created by Error202
 | ||
|  |  * Date: 05.06.2018
 | ||
|  |  */
 | ||
|  | 
 | ||
|  | namespace core\components\modules;
 | ||
|  | 
 | ||
|  | 
 | ||
|  | use yii\web\Application;
 | ||
|  | 
 | ||
|  | interface ModuleInterface {
 | ||
|  | 
 | ||
|  | 	/**
 | ||
|  | 	 * Initializes the module.
 | ||
|  | 	 */
 | ||
|  | 	public function init();
 | ||
|  | 	/**
 | ||
|  | 	 * Bootstrap method to be called during application bootstrap stage.
 | ||
|  | 	 * @param Application $app the application currently running
 | ||
|  | 	 */
 | ||
|  | 	public function bootstrap($app);
 | ||
|  | 
 | ||
|  | }
 |