accounts/common/notifications/NotificationInterface.php

13 lines
192 B
PHP
Raw Normal View History

<?php
declare(strict_types=1);
namespace common\notifications;
interface NotificationInterface {
public static function getType(): string;
public function getPayloads(): array;
}