/opt/alt/php55/usr/share/pear/Symfony/Component/HttpFoundation
NameSizeModeActions
File/-0755rm
Resources/-0755rm
Session/-0755rm
AcceptHeader.php36100644editdlrm
AcceptHeaderItem.php49150644editdlrm
ApacheRequest.php9300644editdlrm
autoloader.php3440644editdlrm
BinaryFileResponse.php96550644editdlrm
Cookie.php50650644editdlrm
ExpressionRequestMatcher.php13590644editdlrm
FileBag.php40330644editdlrm
HeaderBag.php81410644editdlrm
IpUtils.php35140644editdlrm
JsonResponse.php46330644editdlrm
ParameterBag.php80990644editdlrm
RedirectResponse.php26900644editdlrm
Request.php559080644editdlrm
RequestMatcher.php38010644editdlrm
RequestMatcherInterface.php7910644editdlrm
RequestStack.php23730644editdlrm
Response.php358070644editdlrm
ResponseHeaderBag.php88490644editdlrm
ServerBag.php37040644editdlrm
StreamedResponse.php32140644editdlrm
Edit: /opt/alt/php55/usr/share/pear/Symfony/Component/HttpFoundation/RequestMatcherInterface.php (791B)
* * 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 * * @api */ interface RequestMatcherInterface { /** * Decides whether the rule(s) implemented by the strategy matches the supplied request. * * @param Request $request The request to check for a match * * @return Boolean true if the request matches, false otherwise * * @api */ public function matches(Request $request); }