validation-bugsnag-email

This commit is contained in:
RafficMohammed
2023-01-31 13:17:59 +05:30
parent 2ec836b447
commit 9dd3f53910
769 changed files with 20242 additions and 14060 deletions

View File

@@ -69,7 +69,7 @@ abstract class AbstractUser implements ArrayAccess, User
/**
* Get the nickname / username for the user.
*
* @return string
* @return string|null
*/
public function getNickname()
{
@@ -79,7 +79,7 @@ abstract class AbstractUser implements ArrayAccess, User
/**
* Get the full name of the user.
*
* @return string
* @return string|null
*/
public function getName()
{
@@ -89,7 +89,7 @@ abstract class AbstractUser implements ArrayAccess, User
/**
* Get the e-mail address of the user.
*
* @return string
* @return string|null
*/
public function getEmail()
{
@@ -99,7 +99,7 @@ abstract class AbstractUser implements ArrayAccess, User
/**
* Get the avatar / image URL for the user.
*
* @return string
* @return string|null
*/
public function getAvatar()
{

View File

@@ -14,28 +14,28 @@ interface User
/**
* Get the nickname / username for the user.
*
* @return string
* @return string|null
*/
public function getNickname();
/**
* Get the full name of the user.
*
* @return string
* @return string|null
*/
public function getName();
/**
* Get the e-mail address of the user.
*
* @return string
* @return string|null
*/
public function getEmail();
/**
* Get the avatar / image URL for the user.
*
* @return string
* @return string|null
*/
public function getAvatar();
}

View File

@@ -18,6 +18,15 @@ use League\OAuth1\Client\Server\Twitter as TwitterServer;
class SocialiteManager extends Manager implements Contracts\Factory
{
/**
* The application instance.
*
* @var \Illuminate\Contracts\Foundation\Application
*
* @deprecated Will be removed in a future Socialite release.
*/
protected $app;
/**
* Get a driver instance.
*