1
0
mirror of https://github.com/flextype/flextype.git synced 2025-08-15 01:24:25 +02:00

Slim Framework integration #118 #117

- Middleware base class added
This commit is contained in:
Awilum
2019-06-02 01:49:50 +03:00
parent ddb911429a
commit 00cb982501

23
flextype/Middleware.php Normal file
View File

@@ -0,0 +1,23 @@
<?php
/**
* @package Flextype
*
* @author Sergey Romanenko <hello@romanenko.digital>
* @link http://romanenko.digital
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Flextype;
class Middleware
{
protected $container;
public function __construct($container)
{
$this->container = $container;
}
}