mirror of
https://github.com/grocy/grocy.git
synced 2025-10-11 16:16:38 +00:00
13 lines
180 B
PHP
13 lines
180 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace Grocy\Middleware;
|
||
|
|
||
|
class BaseMiddleware
|
||
|
{
|
||
|
public function __construct(\Slim\Container $container) {
|
||
|
$this->container = $container;
|
||
|
}
|
||
|
|
||
|
protected $container;
|
||
|
}
|