From 17d0bb7a2780b18a17d00a9170d6b20b7e3fcd3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 16 Jul 2022 19:41:41 +0200 Subject: [PATCH] Fix: Use file name, not path to file --- .php-cs-fixer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index bee766f1f5..d1b04cfd64 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -9,7 +9,7 @@ ->in(__DIR__) ->exclude('manual/en/') ->name('*.inc') - ->name(__FILE__) + ->name('.php-cs-fixer.php') ->notPath('include/last_updated.inc') ->notPath('include/pregen-confs.inc') ->notPath('include/pregen-news.inc')