grocy/middleware/BaseMiddleware.php
2020-02-11 17:42:03 +01:00

18 lines
314 B
PHP

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