|
@@ -44,7 +44,9 @@ class Mattermost
|
|
|
$response->getHeaders();
|
|
|
|
|
|
} catch (TransportExceptionInterface $e) {
|
|
|
- $this->requestStack->getSession()->getFlashBag()->add('error', "L'envoi vers mattermost a échoué.");
|
|
|
+ /** @var \Symfony\Component\HttpFoundation\Session\Session $session */
|
|
|
+ $session = $this->requestStack->getSession();
|
|
|
+ $session->getFlashBag()->add('error', "L'envoi vers mattermost a échoué.");
|
|
|
}
|
|
|
}
|
|
|
|