| 1 | <?php |
||
| 19 | trait OfferGroupTrait |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var int |
||
| 23 | */ |
||
| 24 | protected $groupId; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Get groupId |
||
| 28 | * |
||
| 29 | * @return int|null |
||
| 30 | */ |
||
| 31 | public function getGroupId() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Set groupId |
||
| 38 | * |
||
| 39 | * @param int $groupId |
||
| 40 | * |
||
| 41 | * @return $this |
||
| 42 | */ |
||
| 43 | public function setGroupId($groupId) |
||
| 49 | } |
||
| 50 |