diff --git a/Makefile b/Makefile index 9770ad8..d3523ef 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ test: lint vendor/bin/phpunit .PHONY: lint -lint: cs fixer-dry-run +lint: cs fixer-dry-run phpstan .PHONY: cs cs: @@ -15,6 +15,10 @@ cs: cbf: vendor/bin/phpcbf +.PHONY: phpstan +phpstan: + vendor/bin/phpstan analyse + .PHONY: fix fix: cbf fixer