mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-21 19:01:37 +00:00
15 lines
270 B
PHP
15 lines
270 B
PHP
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
interface NotificationChannel
|
|
{
|
|
public function validationRules(): array;
|
|
|
|
public function data(array $input): array;
|
|
|
|
public function connect(): bool;
|
|
|
|
public function sendMessage(string $subject, string $text): void;
|
|
}
|