| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 50% |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class ServiceConfig extends AbstractConfig |
||
| 11 | { |
||
| 12 | const STATIC_API_TOKEN_LIST = 'static.api.token.list'; |
||
| 13 | |||
| 14 | const DEBUG_ACTIVE = 'debug.active'; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @return array |
||
| 18 | * @throws \Xervice\Config\Exception\ConfigNotFound |
||
| 19 | */ |
||
| 20 | public function getStaticApiToken() : array |
||
| 23 | } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return bool |
||
| 27 | * @throws \Xervice\Config\Exception\ConfigNotFound |
||
| 28 | */ |
||
| 29 | 1 | public function isDebug() : bool |
|
| 32 | } |
||
| 33 | } |