1
0
Fork 0

added missing var declaration

pull/5770/head
Fabien Potencier 2016-10-07 11:38:36 -07:00
parent 902a5c32db
commit b502a35fc1
1 changed files with 1 additions and 0 deletions

View File

@ -183,6 +183,7 @@ class PluginManager
$path = $classLoader->findFile($class);
$code = file_get_contents($path);
$separatorPos = strrpos($class, '\\');
$className = $class;
if ($separatorPos) {
$className = substr($class, $separatorPos + 1);
}