| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 24 | { |
||
| 25 | $this->truncateEntity( |
||
| 26 | InventoryItem::class, |
||
| 27 | $output, |
||
| 28 | 'Удаление предметов в инвентарях ... ', |
||
| 29 | 'Инвентари удалены.' |
||
| 30 | ); |
||
| 31 | $this->truncateEntity(Item::class, $output, 'Удаление предметов ... ', 'Предметы удалены.'); |
||
| 32 | $this->truncateEntity(RoomResource::class, $output, 'Удаление ресурсов ... ', 'Ресурсы удалены.'); |
||
| 33 | } |
||
| 34 | } |
||
| 35 |