9 lines
134 B
PHP
9 lines
134 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Notifications\Channels;
|
||
|
|
|
||
|
|
interface SendsCoolifyEmail
|
||
|
|
{
|
||
|
|
public function routeNotificationForCoolifyEmail();
|
||
|
|
}
|