File tree 2 files changed +4
-0
lines changed
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ All notable changes to this project will be documented in this file.
8
8
* ` MultilinePromotedPropertiesFixer ` : Break promoted properties on multiple lines
9
9
* ` ErickSkrauch/blank_line_before_return ` : Add a blank line before each return
10
10
* ` ErickSkrauch/line_break_after_statements ` : Add a blank line after all control statements
11
+ * ` concat_space ` : Concatenation should be spaced
12
+ * ` nullable_type_declaration ` : Changes ` DateTimeInterface|null ` to ` ?DateTimeInterface `
11
13
12
14
## 1.2.3 - 2024-08-23
13
15
### Changed
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ public function getRules() : array {
28
28
'blank_line_after_namespace ' => true ,
29
29
'blank_line_after_opening_tag ' => true ,
30
30
'cast_spaces ' => ['space ' => 'none ' ],
31
+ 'concat_space ' => ['spacing ' => 'one ' ],
31
32
'curly_braces_position ' => [
32
33
'classes_opening_brace ' => 'same_line ' ,
33
34
'functions_opening_brace ' => 'same_line ' ,
@@ -56,6 +57,7 @@ public function getRules() : array {
56
57
'no_trailing_whitespace_in_comment ' => true ,
57
58
'no_unused_imports ' => true ,
58
59
'nullable_type_declaration_for_default_null_value ' => true ,
60
+ 'nullable_type_declaration ' => ['syntax ' => 'question_mark ' ],
59
61
'ordered_imports ' => [
60
62
'imports_order ' => ['class ' , 'function ' , 'const ' ],
61
63
'sort_algorithm ' => 'alpha '
You can’t perform that action at this time.
0 commit comments