diff --git a/flextype/Middleware.php b/flextype/Middleware.php new file mode 100644 index 00000000..b4ade0f0 --- /dev/null +++ b/flextype/Middleware.php @@ -0,0 +1,23 @@ + + * @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; + } +}