Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | protected function configure() |
||
34 | { |
||
35 | parent::configure(); |
||
36 | |||
37 | $this |
||
38 | ->setName('doctrine:schema:drop') |
||
39 | ->setDescription('Executes (or dumps) the SQL needed to drop the current database schema') |
||
40 | ->addOption('em', null, InputOption::VALUE_OPTIONAL, 'The entity manager to use for this command'); |
||
41 | } |
||
42 | |||
53 |