1 | <?php |
||
17 | abstract class Tester |
||
18 | { |
||
19 | /** |
||
20 | * Configures the ParaTestCommand with Tester specific |
||
21 | * definitions |
||
22 | * |
||
23 | * @param Command $command |
||
24 | * @return mixed |
||
25 | */ |
||
26 | abstract public function configure(Command $command); |
||
27 | |||
28 | /** |
||
29 | * @param InputInterface $input |
||
30 | * @param OutputInterface $output |
||
31 | * @return mixed |
||
32 | */ |
||
33 | abstract public function execute(InputInterface $input, OutputInterface $output); |
||
34 | |||
35 | /** |
||
36 | * Returns non-empty options |
||
37 | * |
||
38 | * @param InputInterface $input |
||
39 | * @return array |
||
40 | */ |
||
41 | 4 | protected function getOptions(InputInterface $input) |
|
51 | |||
52 | /** |
||
53 | * Displays help for the ParaTestCommand |
||
54 | * |
||
55 | * @param InputInterface $input |
||
56 | * @param OutputInterface $output |
||
57 | */ |
||
58 | protected function displayHelp(InputInterface $input, OutputInterface $output) |
||
65 | } |
||
66 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.