blob: 35c7f88807c8513246ee1f0679b7da20d6040f1a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/usr/bin/env bash
## Description: Run phpstan in the ddev environment
## Usage: phpstan [options] [paths]
## Example: ddev phpstan --error-format=raw > errors.log
set -e
./vendor/bin/phpstan $*
|