1 | <?php |
||
2 | |||
3 | namespace Raystech\StarterKit\Events; |
||
4 | |||
5 | use Raystech\StarterKit\Models\Term; |
||
6 | use Illuminate\Queue\SerializesModels; |
||
7 | |||
8 | class TermHasBeenAdded |
||
9 | { |
||
10 | use SerializesModels; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
11 | |||
12 | public $term; |
||
13 | |||
14 | public function __construct(Term $term) |
||
15 | { |
||
16 | $this->term = $term; |
||
17 | } |
||
18 | } |
||
19 |