Skip to content

Commit 31d776c

Browse files
committed
Use the space_multiple_catch option of types_spaces
1 parent 8ab5aeb commit 31d776c

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

.php-cs-fixer.dist.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,10 @@
9696
'single_import_per_statement' => ['group_to_single_imports' => true],
9797
'single_line_comment_spacing' => true,
9898
'statement_indentation' => true,
99+
'types_spaces' => [
100+
'space' => 'none',
101+
'space_multiple_catch' => 'none',
102+
],
99103
// >>>>>>>>>>>>>>>>>>>>>>>>>
100104
];
101105

.php-cs-fixer.no-header.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,10 @@
8888
'single_import_per_statement' => ['group_to_single_imports' => true],
8989
'single_line_comment_spacing' => true,
9090
'statement_indentation' => true,
91+
'types_spaces' => [
92+
'space' => 'none',
93+
'space_multiple_catch' => 'none',
94+
],
9195
// >>>>>>>>>>>>>>>>>>>>>>>>>
9296
];
9397

.php-cs-fixer.user-guide.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,10 @@
9090
'single_import_per_statement' => ['group_to_single_imports' => true],
9191
'single_line_comment_spacing' => true,
9292
'statement_indentation' => true,
93+
'types_spaces' => [
94+
'space' => 'none',
95+
'space_multiple_catch' => 'none',
96+
],
9397
// >>>>>>>>>>>>>>>>>>>>>>>>>
9498
];
9599

0 commit comments

Comments
 (0)