| 1 | <?php |
||
| 18 | abstract class AbstractCommand extends Command implements ContainerAwareInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var ContainerInterface |
||
| 22 | */ |
||
| 23 | protected $container; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return CacheTool |
||
| 27 | */ |
||
| 28 | protected function getCacheTool() |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @param string $extension |
||
| 35 | */ |
||
| 36 | protected function ensureExtensionLoaded($extension) |
||
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | */ |
||
| 46 | public function setContainer(ContainerInterface $container = null) |
||
| 50 | } |
||
| 51 |