| Total Complexity | 4 |
| Total Lines | 35 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class RefundShortcut implements ShortcutInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @throws InvalidParamsException |
||
| 21 | */ |
||
| 22 | public function getPlugins(array $params): array |
||
| 31 | } |
||
| 32 | |||
| 33 | protected function defaultPlugins(): array |
||
| 34 | { |
||
| 35 | return [ |
||
| 36 | PreparePlugin::class, |
||
| 37 | RefundPlugin::class, |
||
| 38 | RadarSignPlugin::class, |
||
| 39 | LaunchPlugin::class, |
||
| 40 | ParserPlugin::class, |
||
| 41 | ]; |
||
| 42 | } |
||
| 43 | |||
| 44 | protected function qrCodePlugins(): array |
||
| 52 | ]; |
||
| 53 | } |
||
| 55 |