Conditions | 1 |
Paths | 1 |
Total Lines | 17 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | protected function configure() |
||
24 | { |
||
25 | $this |
||
26 | ->setName('patches:apply-all') |
||
27 | ->setDescription('Apply pending patches.') |
||
28 | ->setDefinition(array( |
||
29 | |||
30 | )) |
||
31 | ->setHelp(<<<EOT |
||
32 | Apply pending patches. You can select the type of patches to be applied using the options. Default patches are always applied. |
||
33 | |||
34 | Use patches:apply if you want to cherry-pick a particular patch. |
||
35 | EOT |
||
36 | ); |
||
37 | |||
38 | $this->registerOptions(); |
||
39 | } |
||
40 | |||
49 |