mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-09-05 12:15:01 +02:00
11 lines
142 B
PHP
11 lines
142 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Contracts\Events;
|
|
|
|
interface CreateSynonymEvent
|
|
{
|
|
public function createSynonym(): void;
|
|
}
|