| 1 | <?php |
||
| 18 | final class FieldMapping implements FieldMappingInterface |
||
| 19 | { |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var Column |
||
| 23 | */ |
||
| 24 | private $dbalColumn; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string |
||
| 28 | */ |
||
| 29 | private $origin; |
||
| 30 | |||
| 31 | 6 | public function __construct( |
|
| 38 | |||
| 39 | 2 | public function getDBALColumn(): Column |
|
| 43 | |||
| 44 | 1 | public function describeOrigin(): string |
|
| 48 | |||
| 49 | 2 | public function collectDBALColumns(): array |
|
| 53 | |||
| 54 | } |
||
| 55 |