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