forked from wallabag/wallabag
Fix CS
This commit is contained in:
@ -88,7 +88,7 @@ class UsernameFeedTokenConverter implements ParamConverterInterface
|
||||
$user = $userRepository->findOneByUsernameAndFeedtoken($username, $feedToken);
|
||||
|
||||
if (null === $user || !($user instanceof User)) {
|
||||
throw new NotFoundHttpException(sprintf('%s not found.', $configuration->getClass()));
|
||||
throw new NotFoundHttpException(\sprintf('%s not found.', $configuration->getClass()));
|
||||
}
|
||||
|
||||
// Map found user to the route's parameter
|
||||
|
||||
Reference in New Issue
Block a user