Fixed PHPstan issues.

This commit is contained in:
Jan Böhmer 2020-06-03 22:22:15 +02:00
parent 36dfae52f2
commit e72bc52e12
3 changed files with 4 additions and 2 deletions

View file

@ -82,7 +82,7 @@ final class PasswordChangeNeededSubscriber implements EventSubscriberInterface
public function __construct(Security $security, SessionInterface $session, HttpUtils $httpUtils)
{
$this->security = $security;
/** @var $session Session */
/** @var Session $session */
$this->flashBag = $session->getFlashBag();
$this->httpUtils = $httpUtils;
}