2018-04-14 11:10:38 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Grocy\Middleware;
|
|
|
|
|
2018-04-19 20:44:49 +02:00
|
|
|
use \Grocy\Services\ApplicationService;
|
|
|
|
|
2018-04-14 11:10:38 +02:00
|
|
|
class BaseMiddleware
|
|
|
|
{
|
2020-02-11 17:42:03 +01:00
|
|
|
public function __construct(\DI\Container $container)
|
2018-04-19 20:44:49 +02:00
|
|
|
{
|
2018-04-18 19:03:39 +02:00
|
|
|
$this->AppContainer = $container;
|
2018-04-19 20:44:49 +02:00
|
|
|
$this->ApplicationService = new ApplicationService();
|
2018-04-14 11:10:38 +02:00
|
|
|
}
|
|
|
|
|
2018-04-18 19:03:39 +02:00
|
|
|
protected $AppContainer;
|
2018-04-19 20:44:49 +02:00
|
|
|
protected $ApplicationService;
|
2018-04-14 11:10:38 +02:00
|
|
|
}
|