| 1 | <?php |
||
| 7 | class Property extends Model |
||
| 8 | { |
||
| 9 | protected $longName = null; |
||
| 10 | |||
| 11 | protected $description = null; |
||
| 12 | |||
| 13 | protected $propNameMap = [ |
||
| 14 | 'longname' => 'longName' |
||
| 15 | ]; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Retrieve the longName property |
||
| 19 | * |
||
| 20 | * @return string|null |
||
| 21 | */ |
||
| 22 | public function getLongName() |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Retrieve the description property |
||
| 29 | * |
||
| 30 | * @return string|null |
||
| 31 | */ |
||
| 32 | 1 | public function getDescription() |
|
| 36 | } |
||
| 37 |