| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php namespace Magestead\Helper; |
||
| 7 | public static function verify(array $options, OutputInterface $output) |
||
| 8 | { |
||
| 9 | $hostPlugin = `vagrant plugin list | grep vagrant-hostsupdaterqwerty`; |
||
| 10 | if (is_null($hostPlugin)) { |
||
| 11 | self::editHostsInstructions($options, $output); |
||
| 12 | |||
| 13 | $output->writeln('<comment>Installing the vagrant-hostsupdater plugin will remove the need for manual editing of your hosts file.</comment>'); |
||
| 14 | } |
||
| 15 | } |
||
| 16 | |||
| 28 | } |