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