Skip to content

Commit d4983ce

Browse files
committed
Add new fixers in php-cs-fixer v3.23
1 parent 16e28f4 commit d4983ce

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/CodeIgniter4.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,6 @@ public function __construct()
272272
'no_space_around_double_colon' => true,
273273
'no_spaces_after_function_name' => true,
274274
'no_spaces_around_offset' => ['positions' => ['inside', 'outside']],
275-
'no_spaces_inside_parenthesis' => true,
276275
'no_superfluous_elseif' => true,
277276
'no_superfluous_phpdoc_tags' => [
278277
'allow_mixed' => true,
@@ -515,6 +514,7 @@ public function __construct()
515514
],
516515
'regular_callable_call' => true,
517516
'return_assignment' => true,
517+
'return_to_yield_from' => false,
518518
'return_type_declaration' => ['space_before' => 'none'],
519519
'self_accessor' => false,
520520
'self_static_accessor' => true,
@@ -602,6 +602,7 @@ public function __construct()
602602
],
603603
'single_trait_insert_per_statement' => true,
604604
'space_after_semicolon' => ['remove_in_empty_for_expressions' => true],
605+
'spaces_inside_parentheses' => ['space' => 'none'],
605606
'standardize_increment' => true,
606607
'standardize_not_equals' => true,
607608
'statement_indentation' => true,

0 commit comments

Comments
 (0)