Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
11 | class ContentCreated |
||
12 | { |
||
13 | use Dispatchable, InteractsWithSockets, SerializesModels; |
||
|
|||
14 | |||
15 | public $content; |
||
16 | public $entity; |
||
17 | |||
18 | /** |
||
19 | * Create a new event instance. |
||
20 | * |
||
21 | * @param Content $content |
||
22 | * @param Entity $entity |
||
23 | * @return void |
||
24 | */ |
||
25 | public function __construct(Content $content, Entity $entity) |
||
31 |