/home/techb158/exp.abdallabala.com/vendor/symfony/http-foundation
NameSizeModeActions
Exception/-0755rm
File/-0755rm
Session/-0755rm
Test/-0755rm
AcceptHeader.php37610644editdlrm
AcceptHeaderItem.php36240644editdlrm
ApacheRequest.php11520644editdlrm
BinaryFileResponse.php123980644editdlrm
CHANGELOG.md124720644editdlrm
composer.json9550644editdlrm
Cookie.php91160644editdlrm
ExpressionRequestMatcher.php13540644editdlrm
FileBag.php39430644editdlrm
HeaderBag.php83950644editdlrm
HeaderUtils.php79270644editdlrm
IpUtils.php57100644editdlrm
JsonResponse.php74000644editdlrm
LICENSE10650644editdlrm
ParameterBag.php57610644editdlrm
README.md5310644editdlrm
RedirectResponse.php32270644editdlrm
Request.php656880644editdlrm
RequestMatcher.php47520644editdlrm
RequestMatcherInterface.php6870644editdlrm
RequestStack.php23690644editdlrm
Response.php362790644editdlrm
ResponseHeaderBag.php85740644editdlrm
ServerBag.php40010644editdlrm
StreamedResponse.php32550644editdlrm
UrlHelper.php31060644editdlrm
Edit: /home/techb158/exp.abdallabala.com/vendor/symfony/http-foundation/RequestMatcherInterface.php (687B)
* * 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 true if the request matches, false otherwise */ public function matches(Request $request); }