| 1 | <?php |
||
| 22 | final class VersionAction implements MiddlewareInterface |
||
| 23 | { |
||
| 24 | /** |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | private $version; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Constructor. |
||
| 31 | * |
||
| 32 | * @param string $version |
||
| 33 | */ |
||
| 34 | 1 | public function __construct(string $version) |
|
| 38 | |||
| 39 | /** |
||
| 40 | * {@inheritdoc} |
||
| 41 | */ |
||
| 42 | 1 | public function __invoke(ServerRequestInterface $request, ResponseInterface $response, callable $out = null): ResponseInterface |
|
| 46 | } |
||
| 47 |