Skip to content

Commit 713cd89

Browse files
committed
add nested array test
1 parent 26cb4cf commit 713cd89

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

tests/_files/source_with_return_and_array_with_scalars.php

+14
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,18 @@ public function eigth(): void
6262
return
6363
;
6464
}
65+
66+
public function nineNestedArray(): array
67+
{
68+
return [
69+
[],
70+
[[]],
71+
[[
72+
'test',
73+
'test' => [
74+
[[[false]]]
75+
]
76+
]],
77+
];
78+
}
6579
}

0 commit comments

Comments
 (0)