mirror of
https://github.com/getnamingo/registry.git
synced 2025-05-14 16:46:59 +02:00
20 lines
261 B
PHP
20 lines
261 B
PHP
<?php
|
|
|
|
namespace App\Middleware;
|
|
|
|
use DI\Container;
|
|
|
|
/**
|
|
* Middleware
|
|
*
|
|
* @author Hezekiah O. <support@hezecom.com>
|
|
*/
|
|
class Middleware
|
|
{
|
|
protected $container;
|
|
|
|
public function __construct(Container $container)
|
|
{
|
|
$this->container = $container;
|
|
}
|
|
}
|