Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class Module implements ConfigProviderInterface |
||
14 | { |
||
15 | public const INVOICE_NINJA_CONFIG = 'invoiceNinjaConfig'; |
||
16 | public const TOKEN = 'token'; |
||
17 | public const TOKEN_TYPE = 'tokenType'; |
||
18 | public const API_TIMEOUT = 'apiTimeout'; |
||
19 | public const HOST_URL = 'hostUrl'; |
||
20 | public const URL = 'url'; |
||
21 | public const AUTHORIZATION = 'authorization'; |
||
22 | public const AUTH_USER = 'auth_user'; |
||
23 | public const AUTH_PASS = 'auth_pass'; |
||
24 | |||
25 | /** |
||
26 | * {@inheritDoc} |
||
27 | */ |
||
28 | public function getConfig() |
||
33 |