Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 4 additions & 7 deletions src/Auth0/Login/Auth0JWTUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,34 +41,31 @@ public function getAuthIdentifier()
}

/**
* Get the password for the user.
*
* @return string
* @return void
*/
public function getAuthPassword()
{
return;
}

/**
* @return void
*/
public function getRememberToken()
{
return;
}

/**
* @param $value
* @param string $value
*/
public function setRememberToken($value)
{
}

/**
* @return void
*/
public function getRememberTokenName()
{
return;
}

/**
Expand Down
6 changes: 3 additions & 3 deletions src/Auth0/Login/Auth0User.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,24 +57,24 @@ public function getAuthPassword()
}

/**
* @return void
*/
public function getRememberToken()
{
return;
}

/**
* @param $value
* @param string $value
*/
public function setRememberToken($value)
{
}

/**
* @return void
*/
public function getRememberTokenName()
{
return;
}

/**
Expand Down
19 changes: 1 addition & 18 deletions src/Auth0/Login/LoginServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,6 @@ class LoginServiceProvider extends ServiceProvider

const SDK_VERSION = "5.3.0";

/**
* Indicates if loading of the provider is deferred.
*
* @var bool
*/
protected $defer = false;

/**
* Bootstrap the application events.
*/
Expand All @@ -40,7 +33,7 @@ public function boot()
if ($oldInfoHeaders) {
$infoHeaders = InformationHeaders::Extend($oldInfoHeaders);

$infoHeaders->setEnvironment('Laravel', $laravel::VERSION);
$infoHeaders->setEnvProperty('Laravel', $laravel::VERSION);
$infoHeaders->setPackage('laravel-auth0', self::SDK_VERSION);

ApiClient::setInfoHeadersData($infoHeaders);
Expand Down Expand Up @@ -83,14 +76,4 @@ public function register()
\App::make('auth0')->logout();
});
}

/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return [];
}
}