Skip to content

Commit 6cf5b7b

Browse files
authored
Update User.php
1 parent 03515fa commit 6cf5b7b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Contracts/User.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,28 @@ public function getId();
1414
/**
1515
* Get the nickname / username for the user.
1616
*
17-
* @return ?string
17+
* @return string|null
1818
*/
1919
public function getNickname();
2020

2121
/**
2222
* Get the full name of the user.
2323
*
24-
* @return ?string
24+
* @return string|null
2525
*/
2626
public function getName();
2727

2828
/**
2929
* Get the e-mail address of the user.
3030
*
31-
* @return ?string
31+
* @return string|null
3232
*/
3333
public function getEmail();
3434

3535
/**
3636
* Get the avatar / image URL for the user.
3737
*
38-
* @return ?string
38+
* @return string|null
3939
*/
4040
public function getAvatar();
4141
}

0 commit comments

Comments
 (0)