| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php namespace Magestead\Helper; |
||
| 21 | protected static function editHostsInstructions(array $options, OutputInterface $output) |
||
| 22 | { |
||
| 23 | $output->writeln('<comment>NOTE: You will need to add the following to your hosts file!</comment>'); |
||
| 24 | $comment = $options['vagrantfile']['vm']['network']['private_network'] . |
||
| 25 | ' ' . $options['magestead']['apps']['mba_12345']['base_url']; |
||
| 26 | $output->writeln('<comment>' . $comment . '</comment>'); |
||
| 27 | } |
||
| 28 | } |