1 | <?php |
||
19 | class RevertCommand extends AbstractCommand implements IAggregatorAwareCommand |
||
20 | { |
||
21 | |||
22 | /** |
||
23 | * {@inheritdoc} |
||
|
|||
24 | */ |
||
1 ignored issue
–
show
|
|||
25 | protected function configure() |
||
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
1 ignored issue
–
show
|
|||
43 | protected function execute(InputInterface $input, OutputInterface $output) |
||
64 | |||
65 | /** |
||
66 | * Returns added paths. |
||
67 | * |
||
68 | * @return array |
||
69 | */ |
||
70 | protected function getAddedPaths() |
||
85 | |||
86 | /** |
||
87 | * Deletes given paths in the working copy. |
||
88 | * |
||
89 | * @param array $paths Paths. |
||
90 | * |
||
91 | * @return void |
||
92 | * @throws CommandException When one of the paths can't be deleted. |
||
93 | */ |
||
94 | protected function deletePaths(array $paths) |
||
116 | |||
117 | } |
||
118 |