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