12848091a2
Update to Laravel 9 and PHP 8+ Co-authored-by: B.Fatih KOZ <fatih.koz@gmail.com>
17 lines
234 B
PHP
17 lines
234 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Contracts\Event;
|
|
use App\Models\Pirep;
|
|
|
|
class PirepStateChange extends Event
|
|
{
|
|
public Pirep $pirep;
|
|
|
|
public function __construct(Pirep $pirep)
|
|
{
|
|
$this->pirep = $pirep;
|
|
}
|
|
}
|