diff --git a/Controller/AuthController.php b/Controller/AuthController.php index 302c3a9..1a52362 100644 --- a/Controller/AuthController.php +++ b/Controller/AuthController.php @@ -62,7 +62,7 @@ public function errorAction(): Response return $this->redirectToRoute('core23_lastfm_success'); } - if (null != $this->getParameter('core23.lastfm.auth_error.redirect_route')) { + if (null !== $this->getParameter('core23.lastfm.auth_error.redirect_route')) { return $this->redirectToRoute($this->getParameter('core23.lastfm.auth_error.redirect_route'), $this->getParameter('core23.lastfm.auth_error.redirect_route_params')); } @@ -78,7 +78,7 @@ public function successAction(): Response return $this->redirectToRoute('core23_lastfm_error'); } - if (null != $this->getParameter('core23.lastfm.auth_success.redirect_route')) { + if (null !== $this->getParameter('core23.lastfm.auth_success.redirect_route')) { return $this->redirectToRoute($this->getParameter('core23.lastfm.auth_success.redirect_route'), $this->getParameter('core23.lastfm.auth_success.redirect_route_params')); }