* @license https://www.gnu.org/licenses/agpl-3.0.en.html/ GNU Affero General Public License v3.0 */ namespace App\Interfaces; use App\Models\User; interface SystemNotificationInterface { /** * @return array{subject: string, message: string} */ public function toSystemNotification(User $notifiable): array; }