| 1 | <?php |
||
| 8 | class UserLeftTeam |
||
| 9 | { |
||
| 10 | use SerializesModels; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @type Model |
||
| 14 | */ |
||
| 15 | protected $user; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @type int |
||
| 19 | */ |
||
| 20 | protected $team_id; |
||
| 21 | |||
| 22 | public function __construct($user, $team_id) |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return Model |
||
| 30 | */ |
||
| 31 | public function getUser() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @return int |
||
| 38 | */ |
||
| 39 | public function getTeamId() |
||
| 43 | } |