1 | <?php |
||
16 | final class InviteWasClaimed implements InviteEventInterface |
||
17 | { |
||
18 | /** |
||
19 | * The invite that has been claimed. |
||
20 | * |
||
21 | * @var \Gitamin\Models\Invite |
||
22 | */ |
||
23 | public $invite; |
||
24 | |||
25 | /** |
||
26 | * Create a new invite was claimed event instance. |
||
27 | */ |
||
28 | public function __construct(Invite $invite) |
||
32 | } |
||
33 |