summaryrefslogtreecommitdiffstats
path: root/lib/user.php
diff options
context:
space:
mode:
authorFelix Moeller <mail@felixmoeller.de>2012-10-23 22:53:54 +0200
committerFelix Moeller <mail@felixmoeller.de>2012-10-23 22:53:54 +0200
commite73b817a38a824b3119136ea110eda4be15b99d5 (patch)
tree2679aaf755b1488bf50cb073dbd990fe2761679b /lib/user.php
parent36d0d7590134f5587ab09c67927c3187e8b5c790 (diff)
downloadnextcloud-server-e73b817a38a824b3119136ea110eda4be15b99d5.tar.gz
nextcloud-server-e73b817a38a824b3119136ea110eda4be15b99d5.zip
Checkstyle: NoSpaceAfterComma
Diffstat (limited to 'lib/user.php')
-rw-r--r--lib/user.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/user.php b/lib/user.php
index eff93b501bb..064fcbad96f 100644
--- a/lib/user.php
+++ b/lib/user.php
@@ -120,11 +120,11 @@ class OC_User {
* setup the configured backends in config.php
*/
public static function setupBackends() {
- $backends=OC_Config::getValue('user_backends',array());
+ $backends=OC_Config::getValue('user_backends', array());
foreach($backends as $i=>$config) {
$class=$config['class'];
$arguments=$config['arguments'];
- if(class_exists($class) and array_search($i,self::$_setupedBackends)===false) {
+ if(class_exists($class) and array_search($i, self::$_setupedBackends)===false) {
// make a reflection object
$reflectionObj = new ReflectionClass($class);