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