| Conditions | 2 |
| Paths | 2 |
| Total Lines | 17 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 16 | public function execute(): CommandResponse |
||
| 17 | { |
||
| 18 | $moneyRepository = $this->container->get('kingdom.money_repository'); |
||
| 19 | $money = $moneyRepository->findOneByUser($this->user); |
||
| 20 | |||
| 21 | if ($money) { |
||
| 22 | $this->result->setData( |
||
| 23 | [ |
||
| 24 | 'gold' => $money->getGold(), |
||
| 25 | 'silver' => $money->getSilver(), |
||
| 26 | ] |
||
| 27 | ); |
||
| 28 | } |
||
| 29 | |||
| 30 | |||
| 31 | return $this->result; |
||
| 32 | } |
||
| 33 | } |
||
| 34 |