Total Complexity | 4 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | class EnsureCacheCommand extends Command |
||
13 | { |
||
14 | /** @var PdoAdapter */ |
||
15 | private $adapter; |
||
16 | |||
17 | public function __construct(PdoAdapter $adapter) |
||
18 | { |
||
19 | parent::__construct('sf:ensure-cache'); |
||
20 | $this->adapter = $adapter; |
||
21 | } |
||
22 | |||
23 | protected function configure() |
||
26 | } |
||
27 | |||
28 | protected function execute(InputInterface $input, OutputInterface $output) |
||
36 | } |
||
37 | } |
||
39 |