Skip to content

Commit 028012a

Browse files
authored
Merge pull request #671 from PHPCSStandards/feature/autoloader-minor-tweak
Autoloader: minor tweak
2 parents 0b95d9f + 828dca4 commit 028012a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

phpcsutils-autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
*/
3333
spl_autoload_register(function ($fqClassName) {
3434
// Only try & load our own classes.
35-
if (stripos($fqClassName, 'PHPCSUtils') !== 0) {
35+
if (stripos($fqClassName, 'PHPCSUtils\\') !== 0) {
3636
return;
3737
}
3838

0 commit comments

Comments
 (0)