grocy/middleware/BaseMiddleware.php
2020-02-18 21:56:36 +00:00

18 lines
323 B
PHP

<?php
namespace Grocy\Middleware;
use \Grocy\Services\ApplicationService;
class BaseMiddleware
{
public function __construct(\DI\Container $container)
{
$this->AppContainer = $container;
$this->ApplicationService = ApplicationService::getInstance();
}
protected $AppContainer;
protected $ApplicationService;
}