phpvms/app/Events/PirepFiled.php
Arthur Parienté 992b6d343a
[8.x] feature: upgrade to Laravel 13 (#2204)
* upgrade to laravel 13

* phpstan

* rollback to symfony 7.4

* fix: ModuleService merge

* refactor: new rector rules
2026-05-06 11:27:21 -05:00

14 lines
195 B
PHP

<?php
declare(strict_types=1);
namespace App\Events;
use App\Contracts\Event;
use App\Models\Pirep;
class PirepFiled extends Event
{
public function __construct(public Pirep $pirep) {}
}