1 | <?php |
||
13 | abstract class AddBundleToKernelCommand extends ContainerAwareCommand |
||
14 | { |
||
15 | protected function configure() { |
||
22 | |||
23 | /** |
||
24 | * @param \Symfony\Component\Console\Input\InputInterface $input |
||
25 | * @return string[]; |
||
|
|||
26 | */ |
||
27 | protected function getBundlesArgument(InputInterface $input) { |
||
31 | |||
32 | protected function execute(InputInterface $input, OutputInterface $output) { |
||
39 | |||
40 | |||
41 | /** |
||
42 | * @return KernelInterface |
||
43 | */ |
||
44 | protected function getKernel() { |
||
47 | |||
48 | |||
49 | /** |
||
50 | * @param string[] $arrBundles array of full class names, all with namespace, of the bundles to be added to the kernel |
||
51 | * @param KernelInterface $kernel |
||
52 | * @param OutputInterface $output |
||
53 | * @param string[] $alreadyAdded |
||
54 | * @return bool |
||
55 | */ |
||
56 | protected function updateBundles(array $arrBundles, KernelInterface $kernel, OutputInterface $output, &$alreadyAdded) { |
||
70 | |||
71 | |||
72 | /** |
||
73 | * @param OutputInterface $output |
||
74 | * @param bool $ok |
||
75 | * @param string[] $arrBundles |
||
76 | * @param string[] $alreadyAdded |
||
77 | */ |
||
78 | protected function generateSummary(OutputInterface $output, $ok, array $arrBundles, array $alreadyAdded) { |
||
96 | } |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.