mirovit/nova-notifications

View on GitHub
src/Contracts/Notification.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php


namespace Mirovit\NovaNotifications\Contracts;


interface Notification
{
    public static function make(string $title = null, string $subtitle = null);
}