Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit f7fc3cf

Browse filesBrowse files
[PhpUnitBridge] fix PHP 5.3 compat
1 parent 9b89115 commit f7fc3cf
Copy full SHA for f7fc3cf

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎src/Symfony/Bridge/PhpUnit/Legacy/CoverageListenerTrait.php

Copy file name to clipboardExpand all lines: src/Symfony/Bridge/PhpUnit/Legacy/CoverageListenerTrait.php
+1-1Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.