Skip to content

Commit a8ba270

Browse files
[PhpUnitBridge] fix PHP 5.3 compat
1 parent 1562f0c commit a8ba270

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Legacy/CoverageListenerTrait.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ public function startTest($test)
7575

7676
$covers = $sutFqcn;
7777
if (!\is_array($sutFqcn)) {
78-
$covers = [$sutFqcn];
78+
$covers = array($sutFqcn);
7979
while ($parent = get_parent_class($sutFqcn)) {
8080
$covers[] = $parent;
8181
$sutFqcn = $parent;

0 commit comments

Comments
 (0)