| 1 | <?php |
||
| 22 | class NestedQuery implements BuilderInterface |
||
| 23 | { |
||
| 24 | use ParametersTrait; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | private $path; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var BuilderInterface |
||
| 33 | */ |
||
| 34 | private $query; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param string $path |
||
| 38 | * @param BuilderInterface $query |
||
| 39 | * @param array $parameters |
||
| 40 | */ |
||
| 41 | public function __construct($path, BuilderInterface $query, array $parameters = []) |
||
| 47 | |||
| 48 | /** |
||
| 49 | * {@inheritdoc} |
||
| 50 | */ |
||
| 51 | public function getType() |
||
| 55 | |||
| 56 | /** |
||
| 57 | * {@inheritdoc} |
||
| 58 | */ |
||
| 59 | public function toArray() |
||
| 70 | } |
||
| 71 |