1 | <?php |
||
17 | abstract class AbstractAssetsCommand extends Command implements ContainerAwareInterface |
||
18 | { |
||
19 | /** |
||
20 | * @var SymfonyStyle |
||
21 | */ |
||
22 | protected $io; |
||
23 | |||
24 | /** |
||
25 | * @var boolean |
||
26 | */ |
||
27 | protected $debug = false; |
||
28 | |||
29 | /** |
||
30 | * @var ContainerInterface |
||
31 | */ |
||
32 | protected $container; |
||
33 | |||
34 | /** |
||
35 | * @param InputInterface $input |
||
36 | * |
||
37 | * @return Task[] |
||
38 | */ |
||
39 | protected function buildTasks(InputInterface $input) |
||
52 | |||
53 | /** |
||
54 | * @param InputInterface $input |
||
55 | * |
||
56 | * @return string[] |
||
57 | */ |
||
58 | protected function loadConfiguration(InputInterface $input) |
||
70 | |||
71 | /** |
||
72 | * @param $configurationFile |
||
73 | * |
||
74 | * @return string[] |
||
75 | * |
||
76 | * @throws Exception |
||
77 | */ |
||
78 | protected function loadConfigurationFile($configurationFile) |
||
91 | |||
92 | /** |
||
93 | * @return FilterInterface[] |
||
94 | */ |
||
95 | protected function buildFilters() |
||
109 | |||
110 | /** |
||
111 | * Sets the container. |
||
112 | * |
||
113 | * @param ContainerInterface|null $container A ContainerInterface instance or null |
||
114 | */ |
||
115 | public function setContainer(ContainerInterface $container = null) |
||
119 | } |
||
120 |