We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14da1a7 commit 43be19cCopy full SHA for 43be19c
.php-cs-fixer.dist.php
@@ -9,9 +9,12 @@
9
10
return (new Config())
11
->setRules([
12
- '@PhpCsFixer' => true,
13
- 'binary_operator_spaces' => [
14
- 'default' => 'align_single_space_minimal',
+ '@PhpCsFixer' => true,
+ 'binary_operator_spaces' => [
+ 'default' => 'align_single_space_minimal',
15
+ 'operators' => [
16
+ '=>' => 'align_single_space_minimal_by_scope',
17
+ ],
18
],
19
'blank_line_before_statement' => [
20
'statements' => [
@@ -22,10 +25,10 @@
22
25
'try',
23
26
24
27
- 'concat_space' => [
28
+ 'concat_space' => [
29
'spacing' => 'one',
30
- 'global_namespace_import' => [
31
+ 'global_namespace_import' => [
32
'import_classes' => true,
33
'import_constants' => false,
34
'import_functions' => false,
0 commit comments