1 | <?php |
||
2 | |||
3 | namespace Turahe\LaravelInstaller\Events; |
||
4 | |||
5 | use Illuminate\Queue\SerializesModels; |
||
6 | use Illuminate\Contracts\Queue\ShouldQueue; |
||
7 | use Illuminate\Foundation\Events\Dispatchable; |
||
8 | use Illuminate\Broadcasting\InteractsWithSockets; |
||
9 | |||
10 | /** |
||
11 | * Class LaravelInstallerFinished. |
||
12 | */ |
||
13 | class LaravelInstallerFinished implements ShouldQueue |
||
14 | { |
||
15 | use Dispatchable, InteractsWithSockets, SerializesModels; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
16 | |||
17 | /** |
||
18 | * Create a new event instance. |
||
19 | * |
||
20 | * @return void |
||
21 | */ |
||
22 | public function __construct() |
||
23 | { |
||
24 | // |
||
25 | } |
||
26 | } |
||
27 |