diff --git a/src/tests/golden/testdata/quickfix/nullableTypes.php b/src/tests/golden/testdata/quickfix/nullableTypes.php index 9474a00d..5523c8f8 100644 --- a/src/tests/golden/testdata/quickfix/nullableTypes.php +++ b/src/tests/golden/testdata/quickfix/nullableTypes.php @@ -20,3 +20,7 @@ public function myMethod(MyClass1 $a = null) { function nullableArray(array $a = null) { return 0; } + +function multipleArgsExample(string $a, int $b = null, bool $c = null) { + return 0; +} diff --git a/src/tests/golden/testdata/quickfix/nullableTypes.php.fix.expected b/src/tests/golden/testdata/quickfix/nullableTypes.php.fix.expected index 3673f7c7..24b757eb 100644 --- a/src/tests/golden/testdata/quickfix/nullableTypes.php.fix.expected +++ b/src/tests/golden/testdata/quickfix/nullableTypes.php.fix.expected @@ -20,3 +20,7 @@ class MyClass2 { function nullableArray(?array $a = null) { return 0; } + +function multipleArgsExample(string $a, ?int $b = null, ?bool $c = null) { + return 0; +} diff --git a/src/tests/golden/testdata/quickfix/stringNullable.fix.expected b/src/tests/golden/testdata/quickfix/stringNullable.fix.expected deleted file mode 100644 index d7134cda..00000000 --- a/src/tests/golden/testdata/quickfix/stringNullable.fix.expected +++ /dev/null @@ -1,5 +0,0 @@ -