Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | protected function configure() |
||
22 | { |
||
23 | $this |
||
24 | ->setName('patches:reset') |
||
25 | ->setDescription('Reset database and reapply all patches.') |
||
26 | ->setDefinition(array( |
||
27 | |||
28 | )) |
||
29 | ->setHelp(<<<EOT |
||
30 | Reset the database and reapplies all pending patches. You can select the type of patches to be applied using the options. Default patches are always applied. |
||
31 | |||
32 | Use patches:apply-all if you want to apply remaining patches without resetting the database. |
||
33 | EOT |
||
34 | ); |
||
35 | |||
36 | $this->registerOptions(); |
||
37 | } |
||
38 | |||
49 |