Skip to content
Snippets Groups Projects
Commit db40c27e authored by Simonas Šerlinskas's avatar Simonas Šerlinskas
Browse files

Merge pull request #251 from saimaz/patch-nested-query-deprecation

Marked nested query usage in Query object
parents c7bcac15 d799aca0
No related branches found
No related tags found
No related merge requests found
...@@ -26,6 +26,8 @@ class Query implements BuilderInterface ...@@ -26,6 +26,8 @@ class Query implements BuilderInterface
/** /**
* @var NestedQuery * @var NestedQuery
*
* @deprecated will remove in 1.0 Add NestedQuery to the Query as all other queries.
*/ */
private $nested = null; private $nested = null;
...@@ -79,6 +81,8 @@ class Query implements BuilderInterface ...@@ -79,6 +81,8 @@ class Query implements BuilderInterface
/** /**
* @param string $path * @param string $path
* @param BuilderInterface $query * @param BuilderInterface $query
*
* @deprecated will remove in 1.0 Add NestedQuery to the Query as all other queries.
*/ */
public function addToNested($path, $query) public function addToNested($path, $query)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment