diff --git a/examples/src/Repositories/UserRepository.php b/examples/src/Repositories/UserRepository.php index 5bf1c433..4038fc88 100644 --- a/examples/src/Repositories/UserRepository.php +++ b/examples/src/Repositories/UserRepository.php @@ -10,7 +10,6 @@ use OAuth2ServerExamples\Entities\UserEntity; class UserRepository implements UserRepositoryInterface { - /** * Get a user entity. * @@ -37,6 +36,6 @@ class UserRepository implements UserRepositoryInterface return new UserEntity(); } - return null; + return; } }