| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class CrefoPayApiConfig extends AbstractBundleConfig |
||
| 13 | { |
||
| 14 | public const API_FIELD_MAC = 'mac'; |
||
| 15 | public const RESULT_CODE_OK = 0; |
||
| 16 | public const RESULT_CODE_REDIRECT = 1; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return string |
||
| 20 | */ |
||
| 21 | public function getApiFieldMac(): string |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return int |
||
| 28 | */ |
||
| 29 | public function getResultCodeOk(): int |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @return int |
||
| 36 | */ |
||
| 37 | public function getResultCodeRedirect(): int |
||
| 42 |