| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 32 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
| 33 | { |
||
| 34 | $playerName = $input->getArgument('player'); |
||
| 35 | assert(is_string($playerName)); |
||
| 36 | |||
| 37 | $player = $this->playerState->load($playerName); |
||
|
|
|||
| 38 | $playerInput = new PlayerInput(new SymfonyStyle($input, $output)); |
||
| 39 | |||
| 40 | return Command::SUCCESS; |
||
| 41 | } |
||
| 43 |