You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
375B

  1. <?php
  2. namespace Lc\SovBundle\Session\Flash;
  3. use \Symfony\Component\HttpFoundation\Session\Flash\FlashBag as SfFlashBag;
  4. /**
  5. * class FlashBag.
  6. *
  7. * @author La clic !!!!
  8. */
  9. class FlashBag extends SfFlashBag
  10. {
  11. /**
  12. * {@inheritdoc}
  13. */
  14. public function addTranslatable(string $type, $message, $eedf, $effe)
  15. {
  16. $this->add($type,$message);
  17. }
  18. }