grifart/phpstan-oneline

PHPStan compact error formatter

Installs: 464 519

Dependents: 12

Suggesters: 0

Security: 0

Stars: 23

Watchers: 3

Forks: 4

Open Issues: 0

Type:phpstan-extension

v0.4.2 2021-11-01 10:25 UTC

This package is auto-updated.

Last update: 2024-03-29 03:51:09 UTC


README

Latest Stable Version Total Downloads License Build Status

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

  1. Install Awesome Console (available in PhpStorm repositories)
  2. 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