- Fully transitioned the backend to the Porto architectural pattern - Improved code organization and maintainability - Fixed minor bugs and inconsistencies
13 lines
269 B
PHP
13 lines
269 B
PHP
<?php
|
|
|
|
namespace App\Ship\Abstracts\Events;
|
|
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
abstract class Event
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
}
|