Refactoring ClassLoader::add() to return early
parent
e74223470a
commit
6510ee5c4c
|
@ -90,21 +90,22 @@ class ClassLoader
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (isset($this->prefixes[$prefix])) {
|
if (!isset($this->prefixes[$prefix])) {
|
||||||
if ($prepend) {
|
|
||||||
$this->prefixes[$prefix] = array_merge(
|
|
||||||
(array) $paths,
|
|
||||||
$this->prefixes[$prefix]
|
|
||||||
);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$this->prefixes[$prefix] = array_merge(
|
|
||||||
$this->prefixes[$prefix],
|
|
||||||
(array) $paths
|
|
||||||
);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
$this->prefixes[$prefix] = (array) $paths;
|
$this->prefixes[$prefix] = (array) $paths;
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if ($prepend) {
|
||||||
|
$this->prefixes[$prefix] = array_merge(
|
||||||
|
(array) $paths,
|
||||||
|
$this->prefixes[$prefix]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$this->prefixes[$prefix] = array_merge(
|
||||||
|
$this->prefixes[$prefix],
|
||||||
|
(array) $paths
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue