Remove OC/Core autoloading from old autoloader
This commit is contained in:
parent
a4b19a5b1e
commit
c952adabb5
|
@ -110,7 +110,7 @@ class Autoloader {
|
||||||
$split[1] = strtolower($split[1]);
|
$split[1] = strtolower($split[1]);
|
||||||
|
|
||||||
if ($split[1] === 'core') {
|
if ($split[1] === 'core') {
|
||||||
$paths[] = \OC::$SERVERROOT . '/core/' . strtolower(str_replace('\\', '/', $split[2])) . '.php';
|
// Covered by PSR-4 autoloader
|
||||||
} else if ($split[1] === 'settings') {
|
} else if ($split[1] === 'settings') {
|
||||||
$paths[] = \OC::$SERVERROOT . '/settings/' . strtolower(str_replace('\\', '/', $split[2])) . '.php';
|
$paths[] = \OC::$SERVERROOT . '/settings/' . strtolower(str_replace('\\', '/', $split[2])) . '.php';
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -77,9 +77,7 @@ class AutoLoader extends TestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testLoadCoreNamespaceCore() {
|
public function testLoadCoreNamespaceCore() {
|
||||||
$this->assertEquals([
|
$this->assertEquals([], $this->loader->findClass('OC\Core\Foo\Bar'));
|
||||||
\OC::$SERVERROOT . '/core/foo/bar.php',
|
|
||||||
], $this->loader->findClass('OC\Core\Foo\Bar'));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testLoadCoreNamespaceSettings() {
|
public function testLoadCoreNamespaceSettings() {
|
||||||
|
|
Loading…
Reference in New Issue