diff options
author | VicDeo <victor.dubiniuk@gmail.com> | 2013-03-20 16:54:06 +0400 |
---|---|---|
committer | VicDeo <victor.dubiniuk@gmail.com> | 2013-03-31 16:51:54 +0400 |
commit | c16860e648860b37b5a1b56c3f2cfb663eff61cf (patch) | |
tree | 32e308e41213e6ac1a8c743d022eb7398a91b245 /lib/base.php | |
parent | d4a492d321a20b7313434cb70e307f5e84f60726 (diff) | |
download | nextcloud-server-c16860e648860b37b5a1b56c3f2cfb663eff61cf.tar.gz nextcloud-server-c16860e648860b37b5a1b56c3f2cfb663eff61cf.zip |
Remove space before parethesis
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/base.php b/lib/base.php index c921c45f4a1..76ad0654ed0 100644 --- a/lib/base.php +++ b/lib/base.php @@ -78,7 +78,7 @@ class OC { * SPL autoload */ public static function autoload($className) { - $className = trim ($className, '\\'); + $className = trim($className, '\\'); if (array_key_exists($className, OC::$CLASSPATH)) { $path = OC::$CLASSPATH[$className]; |