mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 10:21:37 +00:00
- refactoring architecture - fix incomplete ssh logs - code editor for scripts in the app - remove Jobs and SSHCommands
19 lines
396 B
PHP
19 lines
396 B
PHP
<?php
|
|
|
|
namespace App\NotificationChannels;
|
|
|
|
use App\Notifications\NotificationInterface;
|
|
|
|
interface NotificationChannel
|
|
{
|
|
public function createRules(array $input): array;
|
|
|
|
public function createData(array $input): array;
|
|
|
|
public function data(): array;
|
|
|
|
public function connect(): bool;
|
|
|
|
public function send(object $notifiable, NotificationInterface $notification): void;
|
|
}
|