Skip to content

Commit 24c9ddc

Browse files
authored
Merge pull request #1 from binary-cats/analysis-64Nbx9
Apply fixes from StyleCI
2 parents ef44149 + 1f6a83b commit 24c9ddc

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

src/helpers.php

+4-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,9 @@
77
use PhpCsFixer\Finder;
88

99
/**
10-
* @param \PhpCsFixer\Finder $finder
11-
* @param array $rules
10+
* @param \PhpCsFixer\Finder $finder
11+
* @param array $rules
12+
*
1213
* @return \PhpCsFixer\Config
1314
*/
1415
function styles(Finder $finder, array $rules = []): Config
@@ -19,7 +20,7 @@ function styles(Finder $finder, array $rules = []): Config
1920

2021
return Config::create()
2122
->registerCustomFixers([
22-
new ForceFQCNFixer()
23+
new ForceFQCNFixer(),
2324
])
2425
->setFinder($finder)
2526
->setRiskyAllowed(true)

src/rules.php

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
// last reviewed: v1.0.0 Binary Kitten
44

55
return [
6-
'@Symfony' => true,
7-
'array_syntax' => ['syntax' => 'short'],
8-
'concat_space' => ['spacing' => 'one'],
9-
'final_class' => false,
10-
'new_with_braces' => true,
11-
'no_superfluous_phpdoc_tags' => false,
6+
'@Symfony' => true,
7+
'array_syntax' => ['syntax' => 'short'],
8+
'concat_space' => ['spacing' => 'one'],
9+
'final_class' => false,
10+
'new_with_braces' => true,
11+
'no_superfluous_phpdoc_tags' => false,
1212
'not_operator_with_successor_space' => true,
13-
'ordered_imports' => ['imports_order' => ['class', 'function', 'const'], 'sort_algorithm' => 'alpha'],
14-
'phpdoc_separation' => false,
13+
'ordered_imports' => ['imports_order' => ['class', 'function', 'const'], 'sort_algorithm' => 'alpha'],
14+
'phpdoc_separation' => false,
1515
];

0 commit comments

Comments
 (0)