1 | <?php |
||
20 | class ValidateDirectoryCommand extends AbstractValidateCommand |
||
21 | { |
||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | private $defaultPath; |
||
26 | |||
27 | /** |
||
28 | * Set default scan path |
||
29 | * |
||
30 | * @param string $path Path |
||
31 | * @return void |
||
32 | */ |
||
33 | public function setDefaultPath($path) |
||
37 | |||
38 | /** |
||
39 | * Configures the current command. |
||
40 | * |
||
41 | * @return void |
||
42 | */ |
||
43 | protected function configure() |
||
60 | |||
61 | /** |
||
62 | * Load JSON definitions |
||
63 | * |
||
64 | * @param InputInterface $input Command input |
||
65 | * @return SplFileInfo[] |
||
66 | */ |
||
67 | protected function loadDefinitions(InputInterface $input) |
||
88 | } |
||
89 |