vendor/tattali/mobile-detect-bundle/src/Helper/RedirectResponseWithCookie.php line 31

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the MobileDetectBundle.
  4.  *
  5.  * (c) Nikolay Ivlev <nikolay.kotovsky@gmail.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. declare(strict_types=1);
  11. namespace MobileDetectBundle\Helper;
  12. use Symfony\Component\HttpFoundation\Cookie;
  13. use Symfony\Component\HttpFoundation\RedirectResponse;
  14. /**
  15.  * @author suncat2000 <nikolay.kotovsky@gmail.com>
  16.  */
  17. class RedirectResponseWithCookie extends RedirectResponse
  18. {
  19.     /**
  20.      * Creates a redirect response so that it conforms to the rules defined for a redirect status code.
  21.      *
  22.      * @param string $url    The URL to redirect to
  23.      * @param int    $status The status code (302 by default)
  24.      * @param Cookie $cookie An array of Cookie objects
  25.      */
  26.     public function __construct($url$status 302Cookie $cookie)
  27.     {
  28.         parent::__construct($url$status);
  29.         $this->headers->setCookie($cookie);
  30.     }
  31. }