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

Commit 214a2a3

Browse files
committed
Fix replacements
1 parent 4eadc15 commit 214a2a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scoper.inc.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ function (string $filePath, string $prefix, string $content): string {
88
if (str_starts_with($filePath, 'src/Tasks/')) {
99
$content = str_replace(
1010
$prefix . '\\\\Illuminate\\\\',
11-
'Illuminate\\\\Database\\\\',
11+
'Illuminate\\\\',
1212
$content
1313
);
1414

1515
$content = str_replace(
1616
$prefix . '\\\\App\\\\',
17-
'App\\\\Models\\\\',
17+
'App\\\\',
1818
$content
1919
);
2020
}

0 commit comments

Comments
 (0)