1 | <?php |
||
10 | class BucketsCommand extends Command |
||
11 | { |
||
12 | /** |
||
13 | * @var Reader |
||
14 | */ |
||
15 | private $reader; |
||
16 | |||
17 | protected function configure() |
||
23 | |||
24 | /** |
||
25 | * @param Reader $reader |
||
26 | */ |
||
27 | public function __construct(Reader $reader) |
||
32 | |||
33 | protected function execute(InputInterface $input, OutputInterface $output) |
||
41 | } |
||
42 |