|
- <?php
-
- namespace Lc\SovBundle\Session\Flash;
-
- use \Symfony\Component\HttpFoundation\Session\Flash\FlashBag as SfFlashBag;
-
-
- class FlashBag extends SfFlashBag
- {
-
-
-
- public function addTranslatable(string $type, $message, $eedf, $effe)
- {
- $this->add($type,$message);
- }
- }
|