vendor/symfony/routing/Matcher/RedirectableUrlMatcherInterface.php line 28

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.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. namespace Symfony\Component\Routing\Matcher;
  11. /**
  12.  * RedirectableUrlMatcherInterface knows how to redirect the user.
  13.  *
  14.  * @author Fabien Potencier <fabien@symfony.com>
  15.  */
  16. interface RedirectableUrlMatcherInterface
  17. {
  18.     /**
  19.      * Redirects the user to another URL and returns the parameters for the redirection.
  20.      *
  21.      * @param string      $path   The path info to redirect to
  22.      * @param string      $route  The route name that matched
  23.      * @param string|null $scheme The URL scheme (null to keep the current one)
  24.      */
  25.     public function redirect(string $pathstring $routestring $scheme null): array;
  26. }