Skip to content

Commit

Permalink
Update AbstractUser.php
Browse files Browse the repository at this point in the history
  • Loading branch information
driesvints committed Jan 5, 2023
1 parent d5f0a31 commit 03515fa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/AbstractUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function getId()
/**
* Get the nickname / username for the user.
*
* @return ?string
* @return string|null
*/
public function getNickname()
{
Expand All @@ -79,7 +79,7 @@ public function getNickname()
/**
* Get the full name of the user.
*
* @return ?string
* @return string|null
*/
public function getName()
{
Expand All @@ -89,7 +89,7 @@ public function getName()
/**
* Get the e-mail address of the user.
*
* @return ?string
* @return string|null
*/
public function getEmail()
{
Expand All @@ -99,7 +99,7 @@ public function getEmail()
/**
* Get the avatar / image URL for the user.
*
* @return ?string
* @return string|null
*/
public function getAvatar()
{
Expand Down

0 comments on commit 03515fa

Please sign in to comment.