From: VicDeo Date: Wed, 20 Mar 2013 12:54:06 +0000 (+0400) Subject: Remove space before parethesis X-Git-Tag: v6.0.0alpha2~1027^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3e9ea6d13b33cb23274d688f6375e7856ec16e2c;p=nextcloud-server.git Remove space before parethesis --- 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];