9 lines
126 B
PHP
9 lines
126 B
PHP
<?php
|
|
|
|
namespace App\Notifications\Channels;
|
|
|
|
interface SendsTelegram
|
|
{
|
|
public function routeNotificationForTelegram();
|
|
}
|