Skip to content

Commit 88cfe38

Browse files
dermalikmannblizzz
andcommitted
Fixed braces formatting in lib/UserBackend.php
Co-authored-by: Arthur Schiwon <blizzz@arthur-schiwon.de> Signed-off-by: Malik Mann <github@dermm.io>
1 parent ac76308 commit 88cfe38

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

lib/UserBackend.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,9 @@ protected function userExistsInDatabase(string $uid): bool {
105105
* @param array $attributes
106106
*/
107107
public function createUserIfNotExists(string $uid, array $attributes = []): void {
108-
if ($this->userExistsInDatabase($uid)) return;
108+
if ($this->userExistsInDatabase($uid)) {
109+
return;
110+
}
109111

110112
$values = [
111113
'uid' => $uid,

0 commit comments

Comments
 (0)