Merge pull request #450 from antistatique/master

[doc] repository methode has to return the query
This commit is contained in:
Tim Nagel 2014-01-28 02:54:11 -08:00
commit 1f9c111193

View file

@ -526,7 +526,7 @@ class UserRepository extends Repository
public function findWithCustomQuery($searchText)
{
// build $query with Elastica objects
$this->find($query);
return $this->find($query);
}
}
```