Skip to content

Commit cd2da68

Browse files
authored
Merge pull request #48 from xi-ao/fix-proxy-autoloader
Fix proxy generation
2 parents b7d527a + 1b8f24b commit cd2da68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bitExpert/PHPStan/Magento/Autoload/ProxyAutoloader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ protected function getFileContents(string $class): string
105105
$returnType . " {}\n\n";
106106
}
107107
} else {
108-
$proxyBaseClass = ' extends ' . $originalClassname;
108+
$proxyBaseClass = ' extends \\' . $originalClassname;
109109
}
110110

111111
$template = "<?php\n";

0 commit comments

Comments
 (0)