/home/techb158/immovalet.com/vendor/symfony/routing/Matcher
NameSizeModeActions
Dumper/-0755rm
CompiledUrlMatcher.php8610644editdlrm
ExpressionLanguageProvider.php16330644editdlrm
RedirectableUrlMatcher.php20980644editdlrm
RedirectableUrlMatcherInterface.php8600644editdlrm
RequestMatcherInterface.php12940644editdlrm
TraceableUrlMatcher.php68260644editdlrm
UrlMatcher.php92720644editdlrm
UrlMatcherInterface.php14150644editdlrm
Edit: /home/techb158/immovalet.com/vendor/symfony/routing/Matcher/RedirectableUrlMatcherInterface.php (860B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Routing\Matcher; /** * RedirectableUrlMatcherInterface knows how to redirect the user. * * @author Fabien Potencier */ interface RedirectableUrlMatcherInterface { /** * Redirects the user to another URL. * * @param string $path The path info to redirect to * @param string $route The route name that matched * @param string|null $scheme The URL scheme (null to keep the current one) * * @return array An array of parameters */ public function redirect(string $path, string $route, string $scheme = null); }