Merge pull request #481 from thephpleague/analysis-qBM7DW

Applied fixes from StyleCI
This commit is contained in:
Alex Bilbie 2016-03-22 14:57:26 +00:00
commit dcf3f50b87

View File

@ -9,7 +9,6 @@ use OAuth2ServerExamples\Entities\UserEntity;
class UserRepository implements UserRepositoryInterface class UserRepository implements UserRepositoryInterface
{ {
/** /**
* Get a user entity. * Get a user entity.
* *
@ -30,6 +29,6 @@ class UserRepository implements UserRepositoryInterface
return new UserEntity(); return new UserEntity();
} }
return null; return;
} }
} }