Files
grocy/middleware/BaseMiddleware.php

18 lines
314 B
PHP
Raw Normal View History

2018-04-14 11:10:38 +02:00
<?php
namespace Grocy\Middleware;
use \Grocy\Services\ApplicationService;
2018-04-14 11:10:38 +02:00
class BaseMiddleware
{
public function __construct(\DI\Container $container)
{
$this->AppContainer = $container;
$this->ApplicationService = new ApplicationService();
2018-04-14 11:10:38 +02:00
}
protected $AppContainer;
protected $ApplicationService;
2018-04-14 11:10:38 +02:00
}