Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php namespace Magestead\Helper; |
||
32 | protected static function editHostsInstructions(array $options, OutputInterface $output) |
||
33 | { |
||
34 | $output->writeln('<comment>NOTE: You will need to add the following to your hosts file!</comment>'); |
||
35 | $comment = $options['vagrantfile']['vm']['network']['private_network'] . |
||
36 | ' ' . $options['magestead']['apps']['mba_12345']['base_url']; |
||
37 | $output->writeln('<info>' . $comment . '</info>'); |
||
38 | } |
||
39 | } |