Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
13 | protected function configure() |
||
14 | { |
||
15 | $this |
||
16 | ->setName('db:execute') |
||
17 | ->addArgument('statement', InputArgument::REQUIRED, 'SQL query') |
||
18 | ->addOption('only-command', null, InputOption::VALUE_NONE, 'Print only mysql command. Do not execute') |
||
19 | ->setDescription('Executes query on database defined in local.xml'); |
||
20 | } |
||
21 | |||
46 | } |