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