| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 25 | { |
||
| 26 | $identity = $this->identityFactory->create(); |
||
| 27 | |||
| 28 | $balance = $this->walletFactory->create($identity)->balance(); |
||
| 29 | |||
| 30 | (new SymfonyStyle($input, $output))->success(sprintf('Balance: %d', $balance->toInteger())); |
||
| 31 | } |
||
| 33 |