Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class NewTipCommentEvent |
||
14 | { |
||
15 | use Dispatchable, InteractsWithSockets, SerializesModels; |
||
1 ignored issue
–
show
|
|||
16 | |||
17 | public $tip_id; |
||
18 | public $comment; |
||
19 | public $user; |
||
20 | |||
21 | /** |
||
22 | * Create a new event instance. |
||
23 | * |
||
24 | * @return void |
||
25 | */ |
||
26 | public function __construct($tip, $comment, $user) |
||
43 |