Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php namespace Magestead\Helper; |
||
15 | public static function verify(array $options, OutputInterface $output) |
||
16 | { |
||
17 | $hostPlugin = `vagrant plugin list | grep vagrant-hostsupdater`; |
||
18 | if (is_null($hostPlugin)) { |
||
19 | self::editHostsInstructions($options, $output); |
||
20 | |||
21 | $output->writeln( |
||
22 | '<comment>Installing the vagrant-hostsupdater plugin will remove the need for |
||
23 | manual edits of your hosts file.</comment>' |
||
24 | ); |
||
25 | } |
||
26 | } |
||
27 | |||
39 | } |