Skip to content
This repository was archived by the owner on Mar 20, 2025. It is now read-only.

Commit d63a953

Browse files
committed
Ignore PHPUnit references
1 parent 2a2bc29 commit d63a953

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

scoper.inc.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,16 @@ function (string $filePath, string $prefix, string $content): string {
1111
'Illuminate\\\\',
1212
$content
1313
);
14-
1514
$content = str_replace(
1615
$prefix . '\\\\App\\\\',
1716
'App\\\\',
1817
$content
1918
);
19+
$content = str_replace(
20+
$prefix . '\\\\PHPUnit\\\\Framework\\\\',
21+
'PHPUnit\\\\Framework\\\\',
22+
$content
23+
);
2024
}
2125

2226
return $content;

0 commit comments

Comments
 (0)