aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/User/Backend.php
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-10-05 15:12:57 +0200
committerMorris Jobke <hey@morrisjobke.de>2020-10-05 20:25:24 +0200
commitd9015a8c94bfd71fe484618a06d276701d3bf9ff (patch)
tree3f7a1cd6ec2fd982dd02de71b76076f7f01cef70 /lib/private/User/Backend.php
parentd357f4b10fe1b59e1e07bb90641d647522c7bfe2 (diff)
downloadnextcloud-server-d9015a8c94bfd71fe484618a06d276701d3bf9ff.tar.gz
nextcloud-server-d9015a8c94bfd71fe484618a06d276701d3bf9ff.zip
Format code to a single space around binary operators
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/private/User/Backend.php')
-rw-r--r--lib/private/User/Backend.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/private/User/Backend.php b/lib/private/User/Backend.php
index 477448279a5..c87dc5d2d50 100644
--- a/lib/private/User/Backend.php
+++ b/lib/private/User/Backend.php
@@ -39,14 +39,14 @@ abstract class Backend implements UserInterface {
/**
* actions that user backends can define
*/
- public const CREATE_USER = 1; // 1 << 0
- public const SET_PASSWORD = 16; // 1 << 4
- public const CHECK_PASSWORD = 256; // 1 << 8
- public const GET_HOME = 4096; // 1 << 12
- public const GET_DISPLAYNAME = 65536; // 1 << 16
- public const SET_DISPLAYNAME = 1048576; // 1 << 20
- public const PROVIDE_AVATAR = 16777216; // 1 << 24
- public const COUNT_USERS = 268435456; // 1 << 28
+ public const CREATE_USER = 1; // 1 << 0
+ public const SET_PASSWORD = 16; // 1 << 4
+ public const CHECK_PASSWORD = 256; // 1 << 8
+ public const GET_HOME = 4096; // 1 << 12
+ public const GET_DISPLAYNAME = 65536; // 1 << 16
+ public const SET_DISPLAYNAME = 1048576; // 1 << 20
+ public const PROVIDE_AVATAR = 16777216; // 1 << 24
+ public const COUNT_USERS = 268435456; // 1 << 28
protected $possibleActions = [
self::CREATE_USER => 'createUser',