ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
Mapping.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
22
24
28interface Mapping
29{
30 public function map(mixed $record): Entity;
31}
This describes an Entity.
Definition: Entity.php:37
Hand a record over to RecordToEntity and factor an Entity.
Definition: Mapping.php:29