Skip to content

Commit 7a9595e

Browse files
committed
Use the space_multiple_catch option of types_spaces
See codeigniter4/CodeIgniter4#6529
1 parent 310ac70 commit 7a9595e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/CodeIgniter4.php

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -587,8 +587,11 @@ public function __construct()
587587
'after_heredoc' => true,
588588
'elements' => ['arrays'],
589589
],
590-
'trim_array_spaces' => true,
591-
'types_spaces' => ['space' => 'none'],
590+
'trim_array_spaces' => true,
591+
'types_spaces' => [
592+
'space' => 'none',
593+
'space_multiple_catch' => 'none',
594+
],
592595
'unary_operator_spaces' => true,
593596
'use_arrow_functions' => true,
594597
'visibility_required' => ['elements' => ['const', 'method', 'property']],

0 commit comments

Comments
 (0)