1 | <?php |
||
14 | class DumpTemplateCacheCommand extends Command |
||
15 | { |
||
16 | /** |
||
17 | * @var \Hshn\AngularBundle\TemplateCache\Dumper |
||
18 | */ |
||
19 | private $dumper; |
||
20 | |||
21 | /** |
||
22 | * @var string |
||
23 | */ |
||
24 | private $target; |
||
25 | |||
26 | /** |
||
27 | * @param Dumper $dumper |
||
28 | * @param string $target |
||
29 | */ |
||
30 | public function __construct(Dumper $dumper, $target) |
||
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | protected function configure() |
||
49 | |||
50 | /** |
||
51 | * {@inheritdoc} |
||
52 | */ |
||
53 | protected function execute(InputInterface $input, OutputInterface $output) |
||
61 | } |
||
62 |