1
0
mirror of synced 2025-01-31 12:32:59 +03:00

DDC-1698 - Prepend autoloader to stack and fix CS

This commit is contained in:
Benjamin Eberlei 2013-01-06 11:03:58 +01:00
parent 4210969087
commit 7dfe0cae08

View File

@ -75,7 +75,9 @@ class Autoloader
require $file;
}
};
spl_autoload_register($autoloader);
spl_autoload_register($autoloader, true, true);
return $autoloader;
}
}