1 | <?php |
||
10 | class BootyCommand extends Command |
||
11 | { |
||
12 | /** @var array */ |
||
13 | private $packages; |
||
14 | |||
15 | /** @var AssetManager $booty */ |
||
16 | private $booty; |
||
17 | |||
18 | /** @var ClassLoader $composer */ |
||
19 | private $composer; |
||
20 | |||
21 | /** @var string $destination */ |
||
22 | private $destination = 'public/'; |
||
23 | |||
24 | public function __construct(string $name = null, array $packages, ClassLoader $composer) |
||
31 | |||
32 | protected function configure() |
||
37 | |||
38 | /** |
||
39 | * @param InputInterface $input |
||
40 | * @param OutputInterface $output |
||
41 | * @return int|void|null |
||
42 | */ |
||
43 | public function execute(InputInterface $input, OutputInterface $output) |
||
61 | } |