1 | <?php |
||
15 | class QueryLocation extends AbstractLocation |
||
16 | { |
||
17 | /** |
||
18 | * @var QuerySerializerInterface |
||
19 | */ |
||
20 | private $querySerializer; |
||
21 | |||
22 | /** |
||
23 | * Set the name of the location |
||
24 | * |
||
25 | * @param string $locationName |
||
26 | * @param QuerySerializerInterface|null $querySerializer |
||
27 | */ |
||
28 | 3 | public function __construct($locationName = 'query', QuerySerializerInterface $querySerializer = null) |
|
34 | |||
35 | /** |
||
36 | * @param CommandInterface $command |
||
37 | * @param RequestInterface $request |
||
38 | * @param Parameter $param |
||
39 | * |
||
40 | * @return RequestInterface |
||
41 | */ |
||
42 | 2 | public function visit( |
|
59 | |||
60 | /** |
||
61 | * @param CommandInterface $command |
||
62 | * @param RequestInterface $request |
||
63 | * @param Operation $operation |
||
64 | * |
||
65 | * @return RequestInterface |
||
66 | */ |
||
67 | 1 | public function after( |
|
92 | } |
||
93 |