| 1 | <?php |
||
| 21 | final class BucketBootstrapCommand extends Command |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var BucketManagerInterface |
||
| 25 | */ |
||
| 26 | private $manager; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Constructor. |
||
| 30 | * |
||
| 31 | * @param BucketManagerInterface $manager |
||
| 32 | */ |
||
| 33 | public function __construct(BucketManagerInterface $manager) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritdoc} |
||
| 42 | */ |
||
| 43 | protected function configure() |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritdoc} |
||
| 51 | */ |
||
| 52 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 58 | } |
||
| 59 |