Remove unused function

This commit is contained in:
Tim
2025-08-18 12:33:59 +02:00
parent 0dc7555ed1
commit 29df284237

View File

@ -20,13 +20,4 @@ readonly class SnipFilterRequest implements CachableDtoInterface
public ?string $sort = self::SORT_NAME,
public ?string $tag = self::TAG_ALL,
) {}
public function toArray(): array
{
return [
'visibility' => $this->visibility,
'sort' => $this->sort,
'tag' => $this->tag,
];
}
}