9 lines
210 B
Text
9 lines
210 B
Text
|
#!/bin/bash
|
||
|
|
||
|
## Description: Open PHPStorm with the current project
|
||
|
## Usage: phpstorm
|
||
|
## Example: "ddev phpstorm"
|
||
|
|
||
|
# Example is macOS-specific, but easy to adapt to any OS
|
||
|
open -a PHPStorm.app ${DDEV_APPROOT}
|