1 | <?php |
||
10 | abstract class AbstractTemplatableCommand extends Command |
||
11 | { |
||
12 | const OPTION_TEMPLATE = 'template'; |
||
13 | |||
14 | /** @var ConfigurationFileLoaderInterface */ |
||
15 | private $configurationFileLoader; |
||
16 | |||
17 | /** |
||
18 | * @param ConfigurationFileLoaderInterface $configurationFileLoader |
||
19 | */ |
||
20 | public function __construct(ConfigurationFileLoaderInterface $configurationFileLoader) |
||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | protected function configure() |
||
39 | |||
40 | /** |
||
41 | * @return ConfigurationFileLoaderInterface |
||
42 | */ |
||
43 | public function getConfigurationFileLoader() |
||
47 | |||
48 | /** |
||
49 | * @param InputInterface $input |
||
50 | * |
||
51 | * @return ConfigurationFile[] |
||
52 | */ |
||
53 | protected function loadTemplateConfigurationFileList(InputInterface $input) |
||
73 | } |
||
74 |