diff options
author | VicDeo <victor.dubiniuk@gmail.com> | 2013-03-20 16:54:06 +0400 |
---|---|---|
committer | VicDeo <victor.dubiniuk@gmail.com> | 2013-03-20 16:54:06 +0400 |
commit | 3e9ea6d13b33cb23274d688f6375e7856ec16e2c (patch) | |
tree | 127b9c95f907fb89067a1a4cf10d52553647ca88 /lib/base.php | |
parent | 68d55648d5904a86d21fb5258684687a31929011 (diff) | |
download | nextcloud-server-3e9ea6d13b33cb23274d688f6375e7856ec16e2c.tar.gz nextcloud-server-3e9ea6d13b33cb23274d688f6375e7856ec16e2c.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]; |