/var/www/flurhymez/vendor/symfony/http-foundation
NameSizeModeActions
Exception/-0755rm
File/-0755rm
RateLimiter/-0755rm
Session/-0755rm
Test/-0755rm
AcceptHeader.php36390644editdlrm
AcceptHeaderItem.php34080644editdlrm
BinaryFileResponse.php125020644editdlrm
CHANGELOG.md156840644editdlrm
composer.json11400644editdlrm
Cookie.php116190644editdlrm
ExpressionRequestMatcher.php13540644editdlrm
FileBag.php39250644editdlrm
HeaderBag.php72080644editdlrm
HeaderUtils.php93700644editdlrm
InputBag.php41360644editdlrm
IpUtils.php62250644editdlrm
JsonResponse.php75890644editdlrm
LICENSE10650644editdlrm
ParameterBag.php59110644editdlrm
README.md9400644editdlrm
RedirectResponse.php30610644editdlrm
Request.php678300644editdlrm
RequestMatcher.php49010644editdlrm
RequestMatcherInterface.php6420644editdlrm
RequestStack.php31500644editdlrm
Response.php379610644editdlrm
ResponseHeaderBag.php79570644editdlrm
ServerBag.php40040644editdlrm
StreamedResponse.php31370644editdlrm
UrlHelper.php30940644editdlrm
Edit: /var/www/flurhymez/vendor/symfony/http-foundation/RequestMatcherInterface.php (642B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpFoundation; /** * RequestMatcherInterface is an interface for strategies to match a Request. * * @author Fabien Potencier */ interface RequestMatcherInterface { /** * Decides whether the rule(s) implemented by the strategy matches the supplied request. * * @return bool */ public function matches(Request $request); }