mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +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;
|
|
}
|