From d9015a8c94bfd71fe484618a06d276701d3bf9ff Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Mon, 5 Oct 2020 15:12:57 +0200 Subject: Format code to a single space around binary operators Signed-off-by: Christoph Wurst --- lib/private/User/Backend.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'lib/private/User/Backend.php') 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', -- cgit v1.2.3