From 2d9084c0f343bb84d1ecae3fdeaa1af45645208f Mon Sep 17 00:00:00 2001 From: Dmitry Khomutov Date: Sun, 11 Feb 2024 22:51:43 +0700 Subject: [PATCH] Fixed Makefile task for Rector. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b73c270..9074700 100644 --- a/Makefile +++ b/Makefile @@ -34,5 +34,8 @@ psalm: php-info install ## Run Psalm check rector: php-info install ## Run Rector $(PHP) vendor/bin/rector process --clear-cache --dry-run -.PHONY: php-info list install install-force update test test-coverage mutation-test code-style-fix psalm rector +rector-fix: php-info install ## Run Rector + $(PHP) vendor/bin/rector process --clear-cache + +.PHONY: php-info list install install-force update test test-coverage mutation-test code-style-fix psalm rector rector-fix .DEFAULT_GOAL := list