Level 88
You can only open phpstorm from your host machine, not within Homestead(vagrant).
However you need to enable that. You can do that in PHPstorm under Tools> Create Command-line Launcher. This will create an executable called pstorm which you can use to open your project from the command line.
For example
// Some project
pstorm ~/Code/some-project
// Current directory
pstorm .
1 like