diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-08-24 10:47:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-24 10:47:46 +0200 |
commit | 67758896827cade8f7734498fc32a7dadbdc330a (patch) | |
tree | a7fef5fc7a252abcefb151ff017d70cf67b92c7c /lib | |
parent | 8d0abdea763d054bda7bfe2f0566165fe7bf7157 (diff) | |
parent | 6f083c1428f9a6841cd1f68e321c7d57841e2a74 (diff) | |
download | nextcloud-server-12.0.11RC1.tar.gz nextcloud-server-12.0.11RC1.zip |
Merge pull request #10792 from nextcloud/version/noid/12.0.11RC1v12.0.11RC1
12.0.11 RC 1
Diffstat (limited to 'lib')
-rw-r--r-- | lib/composer/composer/ClassLoader.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/composer/composer/ClassLoader.php b/lib/composer/composer/ClassLoader.php index dc02dfb114f..95f7e0978ba 100644 --- a/lib/composer/composer/ClassLoader.php +++ b/lib/composer/composer/ClassLoader.php @@ -377,7 +377,7 @@ class ClassLoader $subPath = $class; while (false !== $lastPos = strrpos($subPath, '\\')) { $subPath = substr($subPath, 0, $lastPos); - $search = $subPath.'\\'; + $search = $subPath . '\\'; if (isset($this->prefixDirsPsr4[$search])) { $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); foreach ($this->prefixDirsPsr4[$search] as $dir) { |