Files
newznab-tmux/app/Events/ReleaseNameFixed.php
2026-04-21 17:35:52 +02:00

24 lines
517 B
PHP

<?php
declare(strict_types=1);
namespace App\Events;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class ReleaseNameFixed
{
use Dispatchable;
use SerializesModels;
public function __construct(
public readonly int $releaseId,
public readonly string $oldName,
public readonly string $newName,
public readonly int $oldCategoryId,
public readonly int|string $groupId,
public readonly string $poster = '',
) {}
}