mirror of
https://github.com/grocy/grocy.git
synced 2025-04-28 17:23:56 +00:00
18 lines
314 B
PHP
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;
|
|
}
|