| 1 | <?php |
||
| 7 | class Job extends AbstractJob |
||
| 8 | { |
||
| 9 | |||
| 10 | const P_PARAM_RECIPIENT = 'recipient'; |
||
| 11 | const P_PARAM_SENDER = 'sender'; |
||
| 12 | const P_PARAM_TEXT = 'text'; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @return int|null|string |
||
| 16 | */ |
||
| 17 | 9 | public function getRecipient() |
|
| 21 | |||
| 22 | /** |
||
| 23 | * @param $value |
||
| 24 | * |
||
| 25 | * @return $this |
||
| 26 | */ |
||
| 27 | 9 | public function setRecipient($value) |
|
| 31 | |||
| 32 | /** |
||
| 33 | * @return int|null|string |
||
| 34 | */ |
||
| 35 | 7 | public function getSender() |
|
| 39 | |||
| 40 | /** |
||
| 41 | * @param $value |
||
| 42 | * |
||
| 43 | * @return $this |
||
| 44 | */ |
||
| 45 | 9 | public function setSender($value) |
|
| 49 | |||
| 50 | /** |
||
| 51 | * @return int|null|string |
||
| 52 | */ |
||
| 53 | 7 | public function getText() |
|
| 57 | |||
| 58 | /** |
||
| 59 | * @param $value |
||
| 60 | * |
||
| 61 | * @return $this |
||
| 62 | */ |
||
| 63 | 9 | public function setText($value) |
|
| 67 | |||
| 68 | |||
| 69 | } |