added missing var declaration
parent
902a5c32db
commit
b502a35fc1
|
@ -183,6 +183,7 @@ class PluginManager
|
||||||
$path = $classLoader->findFile($class);
|
$path = $classLoader->findFile($class);
|
||||||
$code = file_get_contents($path);
|
$code = file_get_contents($path);
|
||||||
$separatorPos = strrpos($class, '\\');
|
$separatorPos = strrpos($class, '\\');
|
||||||
|
$className = $class;
|
||||||
if ($separatorPos) {
|
if ($separatorPos) {
|
||||||
$className = substr($class, $separatorPos + 1);
|
$className = substr($class, $separatorPos + 1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue