grifart / phpstan-oneline
PHPStan compact error formatter
Installs: 477 388
Dependents: 10
Suggesters: 0
Security: 0
Stars: 23
Watchers: 3
Forks: 4
Open Issues: 0
Type:phpstan-extension
Requires
- php: ^7.1 || ^8.0
- phpstan/phpstan: ^0.12 || ^1.0
README
Compact and clickable PhpStan error output handler.
So when you run for example:
phpstan analyze -l max --configuration phpstan.neon --error-format oneline
and now you will get to the location where error occurred by one-click!
Installation
composer require --dev grifart/phpstan-oneline
and register error formatter into your phpstan.neon
:
includes: - vendor/grifart/phpstan-oneline/config.neon
Clickable paths in PhpStorm
- Install Awesome Console (available in PhpStorm repositories)
- run phpstan in PhpStorm terminal
Custom error format
There has been added compact
error format. It looks like this by default:
phpstan analyze -l max --configuration phpstan.neon --error-format compact
You can customize compact
error format in your phpstan.neon
:
parameters: compact: format: "{path}:{line}\n ↳ {error}" # default