| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 26 | 1 | protected function execute(InputInterface $input, OutputInterface $output): int |
|
| 27 | { |
||
| 28 | 1 | $callbackUrl = $this->getFacade()->getCallbackUrl(); |
|
| 29 | |||
| 30 | 1 | $json = json_encode($callbackUrl, JSON_THROW_ON_ERROR | JSON_PRETTY_PRINT); |
|
| 31 | 1 | $output->writeln($json); |
|
| 32 | |||
| 33 | 1 | return self::SUCCESS; |
|
| 34 | } |
||
| 36 |