Removed _ split from SplClassLoader

This commit is contained in:
Shoghi Cervantes 2014-05-24 17:25:02 +02:00
parent d8ea2e744f
commit f2dc9cdff7

View File

@ -212,7 +212,7 @@ class SplClassLoader implements SplAutoloader{
$resourcePath = str_replace('\\', DIRECTORY_SEPARATOR, $resourceNamespace) . DIRECTORY_SEPARATOR;
}
return $resourcePath . str_replace('_', DIRECTORY_SEPARATOR, $resourceName) . $this->fileExtension;
return $resourcePath . $resourceName . $this->fileExtension;
}
/**