| Total Complexity | 1 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class TagRemoved |
||
| 10 | { |
||
| 11 | use SerializesModels; |
||
|
|
|||
| 12 | |||
| 13 | /** @var Taggable|Model * */ |
||
| 14 | public $model; |
||
| 15 | |||
| 16 | /*** @var string */ |
||
| 17 | public $tagSlug; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Create a new event instance. |
||
| 21 | * |
||
| 22 | * @param Taggable|Model $model |
||
| 23 | */ |
||
| 24 | public function __construct($model, string $tagSlug) |
||
| 30 |