Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
29 | protected function execute(InputInterface $input, OutputInterface $output) |
||
30 | { |
||
31 | $io = new SymfonyStyle($input, $output); |
||
32 | |||
33 | $io->error( |
||
34 | "Attention\n" . |
||
35 | "============\n" . |
||
36 | "No ORM bridge has been installed. Please install one to be able to use this command.\n" . |
||
37 | "See https://github.com/hautelook/AliceBundle#installation for more information." |
||
38 | ); |
||
39 | |||
40 | } |
||
41 | } |
||
42 |