| 1 | <?php |
||
| 20 | class QuerystringRequestMatcher extends SymfonyRequestMatcher |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var string Regular expression to match the query string part of the request url |
||
| 24 | */ |
||
| 25 | private $queryString; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @param string $queryString |
||
| 29 | */ |
||
| 30 | 2 | public function setQueryString($queryString) |
|
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritdoc} |
||
| 37 | */ |
||
| 38 | 25 | public function matches(Request $request) |
|
| 50 | } |
||
| 51 |