| 1 | <?php |
||
| 19 | final class ListMapping implements ListMappingInterface |
||
| 20 | { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var Column |
||
| 24 | */ |
||
| 25 | private $column; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var MappingInterface |
||
| 29 | */ |
||
| 30 | private $entryMapping; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @var string |
||
| 34 | */ |
||
| 35 | private $origin; |
||
| 36 | |||
| 37 | 5 | public function __construct( |
|
| 46 | |||
| 47 | 1 | public function getDBALColumn(): Column |
|
| 51 | |||
| 52 | 1 | public function getEntryMapping(): MappingInterface |
|
| 56 | |||
| 57 | 1 | public function describeOrigin(): string |
|
| 61 | |||
| 62 | 1 | public function collectDBALColumns(): array |
|
| 69 | |||
| 70 | } |
||
| 71 |