| Conditions | 1 |
| Paths | 1 |
| Total Lines | 29 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 52 | public static function getAvailableOptions(): array |
||
| 53 | { |
||
| 54 | return [ |
||
| 55 | 'debug' => [ |
||
| 56 | 'info' => 'If true, then GuzzleHttp will be in verbose mode.', |
||
| 57 | 'types' => ['boolean'], |
||
| 58 | ], |
||
| 59 | 'url' => [ |
||
| 60 | 'info' => 'iDoklad API base URL', |
||
| 61 | 'types' => ['string'], |
||
| 62 | ], |
||
| 63 | 'token_endpoint' => [ |
||
| 64 | 'info' => 'iDoklad Access Token URL', |
||
| 65 | 'types' => ['string'], |
||
| 66 | ], |
||
| 67 | 'client_id' => [ |
||
| 68 | 'info' => 'Client ID from iDoklad admin.', |
||
| 69 | 'types' => ['string'], |
||
| 70 | ], |
||
| 71 | 'client_secret' => [ |
||
| 72 | 'info' => 'Client secret from iDoklad admin.', |
||
| 73 | 'types' => ['string'], |
||
| 74 | ], |
||
| 75 | 'scope' => [ |
||
| 76 | 'info' => 'iDoklad scope configuration.', |
||
| 77 | 'types' => ['string'], |
||
| 78 | ], |
||
| 79 | ]; |
||
| 80 | } |
||
| 81 | } |
||
| 82 |