1 | <?php |
||
11 | class ExplainCommand extends ConfigurableCommand |
||
12 | { |
||
13 | /** |
||
14 | * Defines what arguments and options are available for the user. Can be listed using |
||
15 | * Smoke.phar analyse --help. |
||
16 | */ |
||
17 | protected function configure() |
||
23 | |||
24 | /** |
||
25 | * Runs the analysis of the given website with all given parameters. |
||
26 | * |
||
27 | * @param InputInterface $input |
||
28 | * @param OutputInterface $output |
||
29 | */ |
||
30 | protected function execute(InputInterface $input, OutputInterface $output) |
||
55 | |||
56 | /** |
||
57 | * Initializes the configuration. |
||
58 | * |
||
59 | * @param $configFile |
||
60 | * |
||
61 | * @return Configuration |
||
62 | */ |
||
63 | private function initConfiguration($configFile) |
||
70 | } |
||
71 |
This check looks for function calls that miss required arguments.