Total Complexity | 2 |
Total Lines | 58 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | class RoutesService implements RoutesServiceInterface |
||
20 | { |
||
21 | /** |
||
22 | * @var Container |
||
23 | */ |
||
24 | private $container; |
||
25 | |||
26 | /** |
||
27 | * @var FluentPdoFactory |
||
28 | */ |
||
29 | private $fluentPdo; |
||
30 | |||
31 | /** |
||
32 | * RoutesService constructor. |
||
33 | * @param Container $container |
||
34 | * @param FluentPdoFactory $fluentPdo |
||
35 | */ |
||
36 | public function __construct(Container $container, FluentPdoFactory $fluentPdo) |
||
40 | } |
||
41 | |||
42 | /** |
||
43 | * @return array |
||
44 | */ |
||
45 | public function getRoutes() |
||
80 | } |