9 lines
120 B
PHP
9 lines
120 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Notifications\Channels;
|
||
|
|
||
|
interface SendsEmail
|
||
|
{
|
||
|
public function routeNotificationForEmail();
|
||
|
}
|