ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
RetrievalInterface.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21namespace ILIAS\Repository;
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
41 public function isFieldNumeric(
42 string $field
43 ): bool;
44}
Both the subject and the direction need to be specified when expressing an order.
Definition: Order.php:29
A simple class to express a naive range of whole positive numbers.
Definition: Range.php:29
getData(array $fields, ?Range $range=null, ?Order $order=null, array $filter=[], array $parameters=[])
count(array $filter, array $parameters)