16 lines
214 B
PHP
16 lines
214 B
PHP
<?php
|
|
|
|
namespace App\Message;
|
|
|
|
readonly class RefreshMetadata
|
|
{
|
|
public function __construct(private int $mangaId)
|
|
{
|
|
}
|
|
|
|
public function getMangaId(): int
|
|
{
|
|
return $this->mangaId;
|
|
}
|
|
}
|