| 123456789101112131415161718192021222324 |
- <?php
- namespace App\Events;
- use App\Process;
- use Illuminate\Broadcasting\InteractsWithSockets;
- use Illuminate\Foundation\Events\Dispatchable;
- use Illuminate\Queue\SerializesModels;
- class ResetProcessStatisticStartDateEvent
- {
- use Dispatchable, InteractsWithSockets, SerializesModels;
- public $process;
- /**
- * Create a new event instance.
- * @param Process $process
- * @return void
- */
- public function __construct(Process $process)
- {
- $this->process = $process;
- }
- }
|