Merge pull request #488 from thephpleague/analysis-ze7lN9

Applied fixes from StyleCI
This commit is contained in:
Alex Bilbie 2016-03-24 10:10:44 +00:00
commit 7ce31bda87
4 changed files with 4 additions and 6 deletions

View File

@ -3,7 +3,6 @@
namespace OAuth2ServerExamples\Repositories;
use League\OAuth2\Server\Entities\Interfaces\ClientEntityInterface;
use League\OAuth2\Server\Entities\Interfaces\ScopeEntityInterface;
use League\OAuth2\Server\Repositories\ScopeRepositoryInterface;
use OAuth2ServerExamples\Entities\ScopeEntity;
@ -33,9 +32,8 @@ class ScopeRepository implements ScopeRepositoryInterface
return $scope;
}
/**
* @inheritdoc
* {@inheritdoc}
*/
public function finalizeScopes(
array $scopes,

View File

@ -10,7 +10,7 @@ use OAuth2ServerExamples\Entities\UserEntity;
class UserRepository implements UserRepositoryInterface
{
/**
* @inheritdoc
* {@inheritdoc}
*/
public function getUserEntityByUserCredentials(
$username,