diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2018-08-10 15:03:22 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2018-08-10 15:03:22 +0200 |
commit | 90a656305bb5e69e63381cb31c45eca89d017f34 (patch) | |
tree | 1617656f64a701b3223f59fd42635d8a30ae644c /apps/federation/composer | |
parent | 7aad5b7721bbecf673b1adb4f40a9b561bf6949e (diff) | |
download | nextcloud-server-90a656305bb5e69e63381cb31c45eca89d017f34.tar.gz nextcloud-server-90a656305bb5e69e63381cb31c45eca89d017f34.zip |
Bump autoloaders
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/federation/composer')
-rw-r--r-- | apps/federation/composer/composer/ClassLoader.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/federation/composer/composer/ClassLoader.php b/apps/federation/composer/composer/ClassLoader.php index dc02dfb114f..95f7e0978ba 100644 --- a/apps/federation/composer/composer/ClassLoader.php +++ b/apps/federation/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) { |