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

11 lines
135 B
PHP

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