Browse Source

Suppression erreur de phpintelphense

François Drouhard 1 year ago
parent
commit
af17219edd
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/Service/Mattermost.php

+ 3 - 1
src/Service/Mattermost.php

@@ -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é.");
         }
     }