ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ReaderInterface.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
25 
26 interface ReaderInterface
27 {
33  public function allData(PathInterface $path): \Generator;
34 
38  public function firstData(PathInterface $path): DataInterface;
39 }
firstData(PathInterface $path)
Get the data of the first of the elements specified by the path.
$path
Definition: ltiservices.php:29
allData(PathInterface $path)
Get the data of all elements specified by the path.