update
This commit is contained in:
15
app/Events/Achievements/AchievementCheckRequested.php
Normal file
15
app/Events/Achievements/AchievementCheckRequested.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace App\Events\Achievements;
|
||||
|
||||
use Illuminate\Foundation\Events\Dispatchable;
|
||||
use Illuminate\Queue\SerializesModels;
|
||||
|
||||
class AchievementCheckRequested
|
||||
{
|
||||
use Dispatchable, SerializesModels;
|
||||
|
||||
public function __construct(public readonly int $userId) {}
|
||||
}
|
||||
Reference in New Issue
Block a user