Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class APIService |
||
14 | { |
||
15 | use ContainerInjectableTrait; |
||
16 | |||
17 | private $keyChain = null; |
||
18 | private $service = null; |
||
19 | private $services = null; |
||
|
|||
20 | |||
21 | public function setKeyChain(array $key) : void |
||
24 | } |
||
25 | |||
26 | public function setServiceToLoad(string $service) : void |
||
27 | { |
||
28 | $this->service = $service; |
||
29 | } |
||
30 | |||
31 | public function getKeyToService() |
||
37 | // } |
||
38 | } |
||
40 |