mirror of
				https://github.com/grocy/grocy.git
				synced 2025-10-31 10:46:36 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			323 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			323 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Grocy\Middleware;
 | |
| 
 | |
| use Grocy\Services\ApplicationService;
 | |
| 
 | |
| class BaseMiddleware
 | |
| {
 | |
| 	protected $AppContainer;
 | |
| 
 | |
| 	protected $ApplicationService;
 | |
| 
 | |
| 	public function __construct(\DI\Container $container)
 | |
| 	{
 | |
| 		$this->AppContainer = $container;
 | |
| 		$this->ApplicationService = ApplicationService::getInstance();
 | |
| 	}
 | |
| }
 |