summaryrefslogtreecommitdiffstats
path: root/apps/files_trashbin
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2018-08-10 16:18:00 +0200
committerGitHub <noreply@github.com>2018-08-10 16:18:00 +0200
commite22d15c3a1d7090b1bf0df6281eea41d223ee313 (patch)
tree92e35e2a9a838abf67a5432e48d5b8570a77287f /apps/files_trashbin
parent80dd312e74d8502ff59f8487fb84a91dc0920528 (diff)
parent90a656305bb5e69e63381cb31c45eca89d017f34 (diff)
downloadnextcloud-server-e22d15c3a1d7090b1bf0df6281eea41d223ee313.tar.gz
nextcloud-server-e22d15c3a1d7090b1bf0df6281eea41d223ee313.zip
Merge pull request #10642 from nextcloud/bump/autoloaders
Bump autoloaders
Diffstat (limited to 'apps/files_trashbin')
-rw-r--r--apps/files_trashbin/composer/composer/ClassLoader.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_trashbin/composer/composer/ClassLoader.php b/apps/files_trashbin/composer/composer/ClassLoader.php
index dc02dfb114f..95f7e0978ba 100644
--- a/apps/files_trashbin/composer/composer/ClassLoader.php
+++ b/apps/files_trashbin/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) {