1
0
mirror of https://github.com/elyby/accounts.git synced 2025-01-14 07:52:07 +05:30
accounts/common/notifications/NotificationInterface.php
ErickSkrauch 5fc97fdd7a Implemented oauth session revocation notification.
Reworked webhooks notifications constructors
2020-10-01 01:40:28 +03:00

13 lines
192 B
PHP

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