ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
HandlerCollectionInterface.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 use Countable;
25 use ILIAS\Export\ImportHandler\I\File\XML\Manifest\HandlerInterface as ManifestXMLFileHandlerInterface;
27 use Iterator;
28 
30 {
32 
33  public function withElement(ManifestXMLFileHandlerInterface $element): HandlerCollectionInterface;
34 
36 
37  public function containsExportObjectType(ExportObjectType $type): bool;
38 
39  public function findNextFiles(): HandlerCollectionInterface;
40 
44  public function toArray(): array;
45 
46  public function current(): ManifestXMLFileHandlerInterface;
47 
48  public function next(): void;
49 
50  public function key(): int;
51 
52  public function valid(): bool;
53 
54  public function rewind(): void;
55 }