From 795ccdad531fc1f259c2cf5da3b981d117a637ce Mon Sep 17 00:00:00 2001 From: Mykyta Solomko Date: Fri, 7 May 2021 20:27:08 +0300 Subject: [PATCH] Added flags for php-cs-fixer --- scripts/bin/lint-php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/bin/lint-php b/scripts/bin/lint-php index 5038cc2..444edd1 100755 --- a/scripts/bin/lint-php +++ b/scripts/bin/lint-php @@ -40,7 +40,7 @@ build_file_list while read -r _php_file; do # We need globing and word splitting # shellcheck disable=SC2068 - php-cs-fixer ${EXTRA_ARGS[@]} "${_php_file}" \ + php-cs-fixer -v --dry-run ${EXTRA_ARGS[@]} "${_php_file}" \ || RET=${?} done < "${_CHECK_FILES}"