| 1 | <?php |
||
| 7 | class Header extends Model |
||
| 8 | { |
||
| 9 | |||
| 10 | protected $name = null; |
||
| 11 | |||
| 12 | protected $columnType = null; |
||
| 13 | |||
| 14 | protected $dataType = null; |
||
| 15 | |||
| 16 | protected $mappingClasses = []; |
||
| 17 | |||
| 18 | protected $propNameMap = []; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Retrieve the name property |
||
| 22 | * |
||
| 23 | * @return string|null |
||
| 24 | */ |
||
| 25 | 3 | public function getName() |
|
| 29 | |||
| 30 | /** |
||
| 31 | * Set the name property |
||
| 32 | * |
||
| 33 | * @param string $name |
||
| 34 | * @return $this |
||
| 35 | */ |
||
| 36 | 2 | public function setName($name) |
|
| 41 | |||
| 42 | /** |
||
| 43 | * Retrieve the columnType property |
||
| 44 | * |
||
| 45 | * @return string|null |
||
| 46 | */ |
||
| 47 | 3 | public function getColumnType() |
|
| 51 | |||
| 52 | /** |
||
| 53 | * Set the columnType property |
||
| 54 | * |
||
| 55 | * @param string $columnType |
||
| 56 | * @return $this |
||
| 57 | */ |
||
| 58 | 2 | public function setColumnType($columnType) |
|
| 63 | |||
| 64 | /** |
||
| 65 | * Retrieve the dataType property |
||
| 66 | * |
||
| 67 | * @return string|null |
||
| 68 | */ |
||
| 69 | 3 | public function getDataType() |
|
| 73 | |||
| 74 | /** |
||
| 75 | * Set the dataType property |
||
| 76 | * |
||
| 77 | * @param string $dataType |
||
| 78 | * @return $this |
||
| 79 | */ |
||
| 80 | 2 | public function setDataType($dataType) |
|
| 85 | } |
||
| 86 |