Exception
1 year ago
File
1 year ago
Session
1 year ago
AcceptHeader.php
1 year ago
AcceptHeaderItem.php
1 year ago
ApacheRequest.php
1 year ago
BinaryFileResponse.php
1 year ago
Cookie.php
1 year ago
ExpressionRequestMatcher.php
1 year ago
FileBag.php
1 year ago
HeaderBag.php
1 year ago
IpUtils.php
1 year ago
JsonResponse.php
1 year ago
LICENSE
2 years ago
ParameterBag.php
1 year ago
RedirectResponse.php
1 year ago
Request.php
1 year ago
RequestMatcher.php
1 year ago
RequestMatcherInterface.php
1 year ago
RequestStack.php
1 year ago
Response.php
1 year ago
ResponseHeaderBag.php
1 year ago
ServerBag.php
1 year ago
StreamedResponse.php
1 year ago
RequestMatcherInterface.php
31 lines
| 1 | <?php |
| 2 | |
| 3 | /* |
| 4 | * This file is part of the Symfony package. |
| 5 | * |
| 6 | * (c) Fabien Potencier <fabien@symfony.com> |
| 7 | * |
| 8 | * For the full copyright and license information, please view the LICENSE |
| 9 | * file that was distributed with this source code. |
| 10 | * |
| 11 | * Modified by impress-org on 05-December-2024 using Strauss. |
| 12 | * @see https://github.com/BrianHenryIE/strauss |
| 13 | */ |
| 14 | |
| 15 | namespace Give\Vendors\Symfony\Component\HttpFoundation; |
| 16 | |
| 17 | /** |
| 18 | * RequestMatcherInterface is an interface for strategies to match a Request. |
| 19 | * |
| 20 | * @author Fabien Potencier <fabien@symfony.com> |
| 21 | */ |
| 22 | interface RequestMatcherInterface |
| 23 | { |
| 24 | /** |
| 25 | * Decides whether the rule(s) implemented by the strategy matches the supplied request. |
| 26 | * |
| 27 | * @return bool true if the request matches, false otherwise |
| 28 | */ |
| 29 | public function matches(Request $request); |
| 30 | } |
| 31 |