1 | <?php |
||
25 | class QueryParametersParser implements QueryParametersParserInterface |
||
26 | { |
||
27 | /** |
||
28 | * @var DataParserInterface |
||
29 | */ |
||
30 | protected $parser; |
||
31 | |||
32 | /** |
||
33 | * @var string|null |
||
34 | */ |
||
35 | protected $queryType; |
||
36 | |||
37 | |||
38 | public function parse(ServerRequestInterface $request) |
||
42 | |||
43 | public function setDataParser(DataParserInterface $parser) |
||
47 | |||
48 | public function setQueryType($type) |
||
52 | } |