Skip to content

Commit 671ce91

Browse files
committed
fix: conditional using above PHP7.4
1 parent b699341 commit 671ce91

File tree

1 file changed

+23
-20
lines changed

1 file changed

+23
-20
lines changed

.php-cs-fixer.dist.php

+23-20
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
<?php
22

3-
use PhpCsFixer\Runner\Parallel\ParallelConfigFactory;
4-
53
$PREDIS_HEADER = <<<EOS
64
This file is part of the Predis package.
75
@@ -12,28 +10,33 @@
1210
file that was distributed with this source code.
1311
EOS;
1412

15-
return (new PhpCsFixer\Config)
16-
->setParallelConfig(ParallelConfigFactory::detect())
17-
->setRules([
18-
'@PHP71Migration' => true,
19-
'header_comment' => ['header' => $PREDIS_HEADER],
20-
'@Symfony' => true,
21-
'phpdoc_separation' => false,
22-
'phpdoc_annotation_without_dot' => false,
23-
'no_superfluous_phpdoc_tags' => false,
24-
'no_unneeded_curly_braces' => false,
25-
'no_unneeded_braces' => false,
26-
'global_namespace_import' => true,
27-
'yoda_style' => false,
28-
'single_line_throw' => false,
29-
'concat_space' => ['spacing' => 'one'],
30-
'increment_style' => false,
31-
'trailing_comma_in_multiline' => ['after_heredoc' => true, 'elements' => ['array_destructuring', 'arrays']]
32-
])
13+
$fixer = new PhpCsFixer\Config;
14+
$fixer->setRules([
15+
'@PHP71Migration' => true,
16+
'header_comment' => ['header' => $PREDIS_HEADER],
17+
'@Symfony' => true,
18+
'phpdoc_separation' => false,
19+
'phpdoc_annotation_without_dot' => false,
20+
'no_superfluous_phpdoc_tags' => false,
21+
'no_unneeded_curly_braces' => false,
22+
'no_unneeded_braces' => false,
23+
'global_namespace_import' => true,
24+
'yoda_style' => false,
25+
'single_line_throw' => false,
26+
'concat_space' => ['spacing' => 'one'],
27+
'increment_style' => false,
28+
'trailing_comma_in_multiline' => ['after_heredoc' => true, 'elements' => ['array_destructuring', 'arrays']]
29+
])
3330
->setFinder(
3431
PhpCsFixer\Finder::create()
3532
->in(__DIR__ . '/bin')
3633
->in(__DIR__ . '/examples')
3734
->in(__DIR__ . '/src')
3835
->in(__DIR__ . '/tests')
3936
);
37+
38+
if (PHP_VERSION_ID >= 70400) {
39+
$fixer->setParallelConfig(\PhpCsFixer\Runner\Parallel\ParallelConfigFactory::detect());
40+
}
41+
42+
return $fixer;

0 commit comments

Comments
 (0)