toby/app/Domain/Notifications/Notifiable.php
2022-04-26 12:46:18 +02:00

10 lines
134 B
PHP

<?php
declare(strict_types=1);
namespace Toby\Domain\Notifications;
interface Notifiable
{
public function notify($instance);
}