11diff --git a/tests/expected_report.txt b/tests/expected_report.txt
2- index c644926..d2640a7 100644
2+ index 476a58b..54630dd 100644
33--- a/tests/expected_report.txt
44+++ b/tests/expected_report.txt
5- @@ -14,21 +14,22 @@ tests/input/constants-var.php 6 0
5+ @@ -14,40 +14,43 @@ tests/input/constants-var.php 6 0
66 tests/input/ControlStructures.php 28 0
77 tests/input/doc-comment-spacing.php 11 0
88 tests/input/duplicate-assignment-variable.php 1 0
@@ -26,28 +26,35 @@ index c644926..d2640a7 100644
2626 tests/input/null_coalesce_operator.php 3 0
2727+ tests/input/null_safe_operator.php 1 0
2828 tests/input/optimized-functions.php 1 0
29- - tests/input/PropertyTypeHintSpacing.php 6 0
30- + tests/input/PropertyTypeHintSpacing.php 7 0
31- tests/input/return_type_on_closures.php 21 0
32- tests/input/return_type_on_methods.php 17 0
29+ - tests/input/PropertyDeclaration.php 6 0
30+ - tests/input/return_type_on_closures.php 21 0
31+ - tests/input/return_type_on_methods.php 17 0
32+ + tests/input/PropertyDeclaration.php 7 0
33+ + tests/input/return_type_on_closures.php 26 0
34+ + tests/input/return_type_on_methods.php 22 0
3335 tests/input/semicolon_spacing.php 3 0
34- @@ -39,15 +40,15 @@ tests/input/superfluous-naming.php 11 0
36+ tests/input/single-line-array-spacing.php 5 0
37+ tests/input/spread-operator.php 6 0
38+ tests/input/static-closures.php 1 0
39+ + tests/input/strings.php 1 0
40+ tests/input/superfluous-naming.php 11 0
3541 tests/input/test-case.php 8 0
3642 tests/input/trailing_comma_on_array.php 1 0
43+ + tests/input/TrailingCommaOnFunctions.php 2 0
3744 tests/input/traits-uses.php 11 0
3845- tests/input/type-hints.php 4 0
39- + tests/input/type-hints.php 5 0
46+ + tests/input/type-hints.php 9 0
4047 tests/input/UnusedVariables.php 1 0
4148 tests/input/use-ordering.php 1 0
4249 tests/input/useless-semicolon.php 2 0
4350- tests/input/UselessConditions.php 20 0
4451+ tests/input/UselessConditions.php 21 0
4552 ----------------------------------------------------------------------
4653- A TOTAL OF 377 ERRORS AND 0 WARNINGS WERE FOUND IN 41 FILES
47- + A TOTAL OF 395 ERRORS AND 0 WARNINGS WERE FOUND IN 42 FILES
54+ + A TOTAL OF 412 ERRORS AND 0 WARNINGS WERE FOUND IN 44 FILES
4855 ----------------------------------------------------------------------
4956- PHPCBF CAN FIX 313 OF THESE SNIFF VIOLATIONS AUTOMATICALLY
50- + PHPCBF CAN FIX 331 OF THESE SNIFF VIOLATIONS AUTOMATICALLY
57+ + PHPCBF CAN FIX 346 OF THESE SNIFF VIOLATIONS AUTOMATICALLY
5158 ----------------------------------------------------------------------
5259
5360
@@ -86,19 +93,19 @@ index 57d9f2b..5493471 100644
8693
8794 public function fcn(string $A): void
8895 {
89- diff --git a/tests/fixed/PropertyTypeHintSpacing .php b/tests/fixed/PropertyTypeHintSpacing .php
90- index 1421913..d52353c 100644
91- --- a/tests/fixed/PropertyTypeHintSpacing .php
92- +++ b/tests/fixed/PropertyTypeHintSpacing .php
93- @@ -9,5 +9,5 @@ final class PropertyTypeHintSpacing
96+ diff --git a/tests/fixed/PropertyDeclaration .php b/tests/fixed/PropertyDeclaration .php
97+ index 5c3f27b..7f286ad 100644
98+ --- a/tests/fixed/PropertyDeclaration .php
99+ +++ b/tests/fixed/PropertyDeclaration .php
100+ @@ -9,5 +9,5 @@ final class PropertyDeclaration
94101 public bool $boolPropertyWithDefaultValue = false;
95102 public string $stringProperty;
96103 public int $intProperty;
97104- public ?string $nullableString = null;
98105+ public string|null $nullableString = null;
99106 }
100107diff --git a/tests/fixed/TrailingCommaOnFunctions.php b/tests/fixed/TrailingCommaOnFunctions.php
101- index ed304c9..001650f 100644
108+ index 6e5cca4..c5fdccb 100644
102109--- a/tests/fixed/TrailingCommaOnFunctions.php
103110+++ b/tests/fixed/TrailingCommaOnFunctions.php
104111@@ -11,7 +11,7 @@ class TrailingCommaOnFunctions
@@ -337,7 +344,7 @@ index 10e6f34..5e26ed8 100644
337344+ private int|string|null $x = 1;
338345 }
339346diff --git a/tests/input/TrailingCommaOnFunctions.php b/tests/input/TrailingCommaOnFunctions.php
340- index ed304c9..e383ee2 100644
347+ index 6e5cca4..1d24bb6 100644
341348--- a/tests/input/TrailingCommaOnFunctions.php
342349+++ b/tests/input/TrailingCommaOnFunctions.php
343350@@ -6,7 +6,7 @@ namespace Doctrine;
0 commit comments