Compact and clickable PhpStan error output handler.
So when you run for example:
phpstan analyze -l max --configuration phpstan.neon --error-format onelineand now you will get to the location where error occurred by one-click!
composer require --dev grifart/phpstan-onelineand register error formatter into your phpstan.neon:
includes:
- vendor/grifart/phpstan-oneline/config.neon- Install Awesome Console (available in PhpStorm repositories)
- run phpstan in PhpStorm terminal
There has been added compact error format. It looks like this by default:
phpstan analyze -l max --configuration phpstan.neon --error-format compactYou can customize compact error format in your phpstan.neon:
parameters:
compact:
format: "{path}:{line}\n ↳ {error}" # default
