1 | <?php |
||
20 | abstract class AbstractCollection extends CollectionAbstract |
||
21 | { |
||
22 | /** |
||
23 | * Lista de documentos encontrados. |
||
24 | */ |
||
25 | public function getMatches() |
||
29 | |||
30 | /** |
||
31 | * Quantidade de documentos encontrados para a query, independente da paginação. |
||
32 | */ |
||
33 | public function getTotal() |
||
37 | |||
38 | /** |
||
39 | * @see getTotal() |
||
40 | */ |
||
41 | public function getTotalFound() |
||
45 | |||
46 | /** |
||
47 | * Tempo necessário para a pesquisa. |
||
48 | */ |
||
49 | public function getTime() |
||
53 | |||
54 | /** |
||
55 | * Detalhes dos resultados para cada palavra. |
||
56 | */ |
||
57 | public function getWords() |
||
61 | |||
62 | /** |
||
63 | * Detalhes dos resultados para cada palavra. |
||
64 | */ |
||
65 | public function getSummary() |
||
75 | |||
76 | public function getPaginator() |
||
80 | |||
81 | public function setPaginator(PaginatorInterface $paginator) |
||
85 | |||
86 | public function paginate($limit, $offset = 0) |
||
89 | |||
90 | /** |
||
91 | * @return ItemInterface |
||
92 | */ |
||
93 | public function factoryItem(array $array) |
||
97 | |||
98 | public function __construct(array $array = null) |
||
102 | |||
103 | /** |
||
104 | * @param array $array Lista de resultados |
||
105 | */ |
||
106 | public function load(array $array = null) |
||
135 | |||
136 | public function __toString() |
||
146 | |||
147 | public function toArray() |
||
151 | |||
152 | /** |
||
153 | * First item found. |
||
154 | * |
||
155 | * @return Item |
||
156 | */ |
||
157 | public function getFirst() |
||
161 | } |
||
162 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.