Skip to content

Commit 578b5d3

Browse files
committed
fix: remove check
1 parent fffd9ad commit 578b5d3

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.php-cs-fixer.dist.php

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,10 @@
4545
4646
);
4747

48-
// @TODO: remove this check when support for PHP 7.4 is dropped
49-
if (PHP_VERSION_ID >= 80000) {
50-
$config
51-
->registerCustomFixers(FixerGenerator::create('vendor/nexusphp/cs-config/src/Fixer', 'Nexus\\CsConfig\\Fixer'))
52-
->setRules(array_merge($config->getRules(), [
53-
NoCodeSeparatorCommentFixer::name() => true,
54-
]));
55-
}
48+
$config
49+
->registerCustomFixers(FixerGenerator::create('vendor/nexusphp/cs-config/src/Fixer', 'Nexus\\CsConfig\\Fixer'))
50+
->setRules(array_merge($config->getRules(), [
51+
NoCodeSeparatorCommentFixer::name() => true,
52+
]));
5653

5754
return $config;

0 commit comments

Comments
 (0)