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 | 2 | public function __construct(string $version) |
|
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | public function __invoke(Request $request, Response $response, callable $out = null) |
||
46 | } |
||
47 |