1 | <?php |
||
23 | final class FixturesListCommand extends ContainerAwareCommand |
||
24 | { |
||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | protected function configure() |
||
35 | |||
36 | /** |
||
37 | * {@inheritdoc} |
||
38 | */ |
||
39 | protected function execute(InputInterface $input, OutputInterface $output) |
||
44 | |||
45 | /** |
||
46 | * @param OutputInterface $output |
||
47 | */ |
||
48 | private function listSuites(OutputInterface $output) |
||
58 | |||
59 | /** |
||
60 | * @param OutputInterface $output |
||
61 | */ |
||
62 | private function listFixtures(OutputInterface $output) |
||
72 | |||
73 | /** |
||
74 | * @return SuiteRegistryInterface |
||
75 | */ |
||
76 | private function getSuiteRegistry() |
||
80 | |||
81 | /** |
||
82 | * @return FixtureRegistryInterface |
||
83 | */ |
||
84 | private function getFixtureRegistry() |
||
88 | } |
||
89 |