Total Complexity | 4 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
21 | class RoutesServiceDecorator extends RoutesService |
||
22 | { |
||
23 | /** |
||
24 | * @var RoutesService |
||
25 | */ |
||
26 | private $service; |
||
27 | |||
28 | /** |
||
29 | * @var array |
||
30 | */ |
||
31 | private $pluginRoutes = []; |
||
32 | |||
33 | /** |
||
34 | * RoutesServiceDecorator constructor. |
||
35 | * @param RoutesService $service |
||
36 | * @param Container $container |
||
37 | * @param FluentPdoFactory $fluentPdo |
||
38 | */ |
||
39 | public function __construct($service, Container $container, FluentPdoFactory $fluentPdo) |
||
45 | } |
||
46 | |||
47 | /** |
||
48 | * @return array |
||
49 | */ |
||
50 | public function getRoutes() |
||
59 | } |
||
60 | } |