summaryrefslogtreecommitdiffstats
path: root/lib/private/User/Backend.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/User/Backend.php')
-rw-r--r--lib/private/User/Backend.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/private/User/Backend.php b/lib/private/User/Backend.php
index a4dbcf77484..a616183dced 100644
--- a/lib/private/User/Backend.php
+++ b/lib/private/User/Backend.php
@@ -47,7 +47,7 @@ abstract class Backend implements UserInterface {
const PROVIDE_AVATAR = 16777216; // 1 << 24
const COUNT_USERS = 268435456; // 1 << 28
- protected $possibleActions = array(
+ protected $possibleActions = [
self::CREATE_USER => 'createUser',
self::SET_PASSWORD => 'setPassword',
self::CHECK_PASSWORD => 'checkPassword',
@@ -56,7 +56,7 @@ abstract class Backend implements UserInterface {
self::SET_DISPLAYNAME => 'setDisplayName',
self::PROVIDE_AVATAR => 'canChangeAvatar',
self::COUNT_USERS => 'countUsers',
- );
+ ];
/**
* Get all supported actions
@@ -108,7 +108,7 @@ abstract class Backend implements UserInterface {
* @return string[] an array of all uids
*/
public function getUsers($search = '', $limit = null, $offset = null) {
- return array();
+ return [];
}
/**
@@ -147,7 +147,7 @@ abstract class Backend implements UserInterface {
* @return array an array of all displayNames (value) and the corresponding uids (key)
*/
public function getDisplayNames($search = '', $limit = null, $offset = null) {
- $displayNames = array();
+ $displayNames = [];
$users = $this->getUsers($search, $limit, $offset);
foreach ( $users as $user) {
$displayNames[$user] = $user;