1 | <?php |
||
24 | class QueryParametersParser implements QueryParametersParserInterface |
||
25 | { |
||
26 | /** |
||
27 | * @var DataParserInterface |
||
28 | */ |
||
29 | protected $parser; |
||
30 | |||
31 | /** |
||
32 | * @var string|null |
||
33 | */ |
||
34 | protected $queryType; |
||
35 | |||
36 | /** |
||
37 | * @inheritdoc |
||
38 | */ |
||
39 | 3 | public function parse(ServerRequestInterface $request) |
|
51 | |||
52 | /** |
||
53 | * @inheritdoc |
||
54 | */ |
||
55 | 2 | public function setDataParser(DataParserInterface $parser) |
|
61 | |||
62 | /** |
||
63 | * @inheritdoc |
||
64 | */ |
||
65 | 1 | public function setQueryType($type) |
|
71 | } |
||
72 |