| 1 | <?php namespace Nord\Lumen\Doctrine\ORM\Console; |
||
| 8 | class FixturesLoadCommand extends DoctrineCommand |
||
| 9 | { |
||
| 10 | |||
| 11 | /** |
||
| 12 | * @var string |
||
| 13 | */ |
||
| 14 | protected $name = 'doctrine:fixtures:load'; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | protected $description = 'Loads data fixtures into the database'; |
||
| 20 | |||
| 21 | |||
| 22 | /** |
||
| 23 | * @inheritdoc |
||
| 24 | */ |
||
| 25 | public function fire() |
||
| 41 | |||
| 42 | |||
| 43 | /** |
||
| 44 | * @return array |
||
| 45 | */ |
||
| 46 | protected function getOptions() |
||
| 53 | } |
||
| 54 |