summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-09-12 16:40:22 +0200
committerGitHub <noreply@github.com>2016-09-12 16:40:22 +0200
commita9c243948b41db6f492cfdbb3e16cb8731f38b78 (patch)
treee30dc2f4340600b3ac15df5ddb1f72d38de60024 /lib
parent4e674b32e134b76fc6f33f1f5c18ddc6e6ff91af (diff)
parentcbcb53119a034d149b1ae5e1bbdb8666e9c5f35a (diff)
downloadnextcloud-server-a9c243948b41db6f492cfdbb3e16cb8731f38b78.tar.gz
nextcloud-server-a9c243948b41db6f492cfdbb3e16cb8731f38b78.zip
Merge pull request #1373 from nextcloud/upstream-26091
Clean up code coverage
Diffstat (limited to 'lib')
-rw-r--r--lib/composer/composer/ClassLoader.php12
1 files changed, 7 insertions, 5 deletions
diff --git a/lib/composer/composer/ClassLoader.php b/lib/composer/composer/ClassLoader.php
index ff6ecfb822f..ac67d302a18 100644
--- a/lib/composer/composer/ClassLoader.php
+++ b/lib/composer/composer/ClassLoader.php
@@ -53,8 +53,8 @@ class ClassLoader
private $useIncludePath = false;
private $classMap = array();
-
private $classMapAuthoritative = false;
+ private $missingClasses = array();
public function getPrefixes()
{
@@ -322,20 +322,20 @@ class ClassLoader
if (isset($this->classMap[$class])) {
return $this->classMap[$class];
}
- if ($this->classMapAuthoritative) {
+ if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) {
return false;
}
$file = $this->findFileWithExtension($class, '.php');
// Search for Hack files if we are running on HHVM
- if ($file === null && defined('HHVM_VERSION')) {
+ if (false === $file && defined('HHVM_VERSION')) {
$file = $this->findFileWithExtension($class, '.hh');
}
- if ($file === null) {
+ if (false === $file) {
// Remember that this class does not exist.
- return $this->classMap[$class] = false;
+ $this->missingClasses[$class] = true;
}
return $file;
@@ -399,6 +399,8 @@ class ClassLoader
if ($this->useIncludePath && $file = stream_resolve_include_path($logicalPathPsr0)) {
return $file;
}
+
+ return false;
}
}