|
1 | 1 | <?php
|
2 | 2 |
|
3 |
| -use PhpCsFixer\Runner\Parallel\ParallelConfigFactory; |
4 |
| - |
5 | 3 | $PREDIS_HEADER = <<<EOS
|
6 | 4 | This file is part of the Predis package.
|
7 | 5 |
|
|
12 | 10 | file that was distributed with this source code.
|
13 | 11 | EOS;
|
14 | 12 |
|
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 | +]) |
33 | 30 | ->setFinder(
|
34 | 31 | PhpCsFixer\Finder::create()
|
35 | 32 | ->in(__DIR__ . '/bin')
|
36 | 33 | ->in(__DIR__ . '/examples')
|
37 | 34 | ->in(__DIR__ . '/src')
|
38 | 35 | ->in(__DIR__ . '/tests')
|
39 | 36 | );
|
| 37 | + |
| 38 | +if (PHP_VERSION_ID >= 70400) { |
| 39 | + $fixer->setParallelConfig(\PhpCsFixer\Runner\Parallel\ParallelConfigFactory::detect()); |
| 40 | +} |
| 41 | + |
| 42 | +return $fixer; |
0 commit comments