Total Complexity | 3 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
8 | final class Configuration |
||
9 | { |
||
10 | |||
11 | /** |
||
12 | * @var App |
||
13 | */ |
||
14 | private $app; |
||
15 | /** |
||
16 | * @var RouterAdapterInterface |
||
17 | */ |
||
18 | private $routerAdapter; |
||
19 | |||
20 | public function __construct(App $app, RouterAdapterInterface $routerAdapter) |
||
21 | { |
||
22 | $this->app = $app; |
||
23 | $this->routerAdapter = $routerAdapter; |
||
24 | } |
||
25 | |||
26 | /** |
||
27 | * @return \Slim\App |
||
28 | */ |
||
29 | public function getApp(): App |
||
32 | } |
||
33 | |||
34 | /** |
||
35 | * @return \JDolba\SlimHttpSmokeTesting\RouterAdapter\RouterAdapterInterface |
||
36 | */ |
||
37 | public function getRouterAdapter(): RouterAdapterInterface |
||
40 | } |
||
41 | } |
||
42 |