composer updated
propel installed but not integrated yet new autoload process including classMap
This commit is contained in:
10
core/vendor/composer/ClassLoader.php
vendored
10
core/vendor/composer/ClassLoader.php
vendored
@@ -162,14 +162,14 @@ class ClassLoader
|
||||
*/
|
||||
public function findFile($class)
|
||||
{
|
||||
if (isset($this->classMap[$class])) {
|
||||
return $this->classMap[$class];
|
||||
}
|
||||
|
||||
if ('\\' == $class[0]) {
|
||||
$class = substr($class, 1);
|
||||
}
|
||||
|
||||
if (isset($this->classMap[$class])) {
|
||||
return $this->classMap[$class];
|
||||
}
|
||||
|
||||
if (false !== $pos = strrpos($class, '\\')) {
|
||||
// namespaced class name
|
||||
$classPath = str_replace('\\', DIRECTORY_SEPARATOR, substr($class, 0, $pos)) . DIRECTORY_SEPARATOR;
|
||||
@@ -202,6 +202,6 @@ class ClassLoader
|
||||
return $file;
|
||||
}
|
||||
|
||||
$this->classMap[$class] = false;
|
||||
return $this->classMap[$class] = false;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user