From 87fe1f21514aecf14d261b0dc1a6f24a83bf74fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 3 Jan 2022 19:27:41 +0100 Subject: [PATCH] Enhancement: Use Php74 rule set --- .php-cs-fixer.fixture.php | 2 +- .php-cs-fixer.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.php-cs-fixer.fixture.php b/.php-cs-fixer.fixture.php index a8d51f7..7d5a091 100644 --- a/.php-cs-fixer.fixture.php +++ b/.php-cs-fixer.fixture.php @@ -13,7 +13,7 @@ use Ergebnis\PhpCsFixer; -$config = PhpCsFixer\Config\Factory::fromRuleSet(new PhpCsFixer\Config\RuleSet\Php73(''), [ +$config = PhpCsFixer\Config\Factory::fromRuleSet(new PhpCsFixer\Config\RuleSet\Php74(''), [ 'final_class' => false, ]); diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index 18e3cca..3a0c68a 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -26,7 +26,7 @@ $license->save(); -$config = PhpCsFixer\Config\Factory::fromRuleSet(new PhpCsFixer\Config\RuleSet\Php73($license->header()), [ +$config = PhpCsFixer\Config\Factory::fromRuleSet(new PhpCsFixer\Config\RuleSet\Php74($license->header()), [ 'strict_comparison' => false, ]);