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