ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
RetrievalInterface.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
27 {
28  public function getData(
29  array $fields,
30  ?Range $range = null,
31  ?Order $order = null,
32  array $filter = [],
33  array $parameters = []
34  ): \Generator;
35 
36  public function count(
37  array $filter,
38  array $parameters
39  ): int;
40 }
count(array $filter, array $parameters)
Both the subject and the direction need to be specified when expressing an order. ...
Definition: Order.php:12
A simple class to express a naive range of whole positive numbers.
Definition: Range.php:28
getData(array $fields, ?Range $range=null, ?Order $order=null, array $filter=[], array $parameters=[])