Skip to content

Commit 22fcedb

Browse files
committed
Add missing doc in TransformedFinder
1 parent f8a4ce7 commit 22fcedb

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Finder/TransformedFinder.php

+14
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,14 @@
2626
*/
2727
class TransformedFinder implements PaginatedFinderInterface
2828
{
29+
/**
30+
* @var SearchableInterface
31+
*/
2932
protected $searchable;
33+
34+
/**
35+
* @var ElasticaToModelTransformerInterface
36+
*/
3037
protected $transformer;
3138

3239
/**
@@ -49,6 +56,13 @@ public function find($query, $limit = null, $options = array())
4956
return $this->transformer->transform($results);
5057
}
5158

59+
/**
60+
* @param $query
61+
* @param null|int $limit
62+
* @param array $options
63+
*
64+
* @return array
65+
*/
5266
public function findHybrid($query, $limit = null, $options = array())
5367
{
5468
$results = $this->search($query, $limit, $options);

0 commit comments

Comments
 (0)