| Total Complexity | 2 |
| Total Lines | 15 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 4 | class Swagger implements \Interop\Http\ServerMiddleware\MiddlewareInterface |
||
| 5 | { |
||
| 6 | /** |
||
| 7 | * @var \Phrest\Swagger |
||
| 8 | */ |
||
| 9 | private $swagger; |
||
| 10 | |||
| 11 | public function __construct(\Phrest\Swagger $swagger) |
||
| 12 | { |
||
| 13 | $this->swagger = $swagger; |
||
| 14 | } |
||
| 15 | |||
| 16 | public function process(\Psr\Http\Message\ServerRequestInterface $request, \Interop\Http\ServerMiddleware\DelegateInterface $delegate) |
||
| 19 | } |
||
| 20 | } |