9 lines
124 B
PHP
9 lines
124 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Notifications\Channels;
|
||
|
|
||
|
interface SendsDiscord
|
||
|
{
|
||
|
public function routeNotificationForDiscord();
|
||
|
}
|