| 1 | <?php |
||
| 7 | class Delegate extends Model |
||
| 8 | { |
||
| 9 | |||
| 10 | protected $userLogin = null; |
||
| 11 | |||
| 12 | protected $createdAt = null; |
||
| 13 | |||
| 14 | protected $comment = null; |
||
| 15 | |||
| 16 | protected $mappingClasses = []; |
||
| 17 | |||
| 18 | protected $propNameMap = [ |
||
| 19 | 'user_login' => 'userLogin', |
||
| 20 | 'created_at' => 'createdAt' |
||
| 21 | ]; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Retrieve the userLogin property |
||
| 25 | * |
||
| 26 | * @return string|null |
||
| 27 | */ |
||
| 28 | 4 | public function getUserLogin() |
|
| 32 | |||
| 33 | /** |
||
| 34 | * Set the userLogin property |
||
| 35 | * |
||
| 36 | * @param string $userLogin |
||
| 37 | * @return $this |
||
| 38 | */ |
||
| 39 | 1 | public function setUserLogin($userLogin) |
|
| 44 | |||
| 45 | /** |
||
| 46 | * Retrieve the createdAt property |
||
| 47 | * |
||
| 48 | * @return string|null |
||
| 49 | */ |
||
| 50 | 4 | public function getCreatedAt() |
|
| 54 | |||
| 55 | /** |
||
| 56 | * Set the createdAt property |
||
| 57 | * |
||
| 58 | * @param string $createdAt |
||
| 59 | * @return $this |
||
| 60 | */ |
||
| 61 | 1 | public function setCreatedAt($createdAt) |
|
| 66 | |||
| 67 | /** |
||
| 68 | * Retrieve the comment property |
||
| 69 | * |
||
| 70 | * @return string|null |
||
| 71 | */ |
||
| 72 | 4 | public function getComment() |
|
| 76 | |||
| 77 | /** |
||
| 78 | * Set the comment property |
||
| 79 | * |
||
| 80 | * @param string $comment |
||
| 81 | * @return $this |
||
| 82 | */ |
||
| 83 | 1 | public function setComment($comment) |
|
| 88 | } |
||
| 89 |