mirror of
https://github.com/vitodeploy/vito.git
synced 2025-04-20 10:21:37 +00:00
14 lines
226 B
PHP
14 lines
226 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\NotificationChannels;
|
|
|
|
use App\Notifications\AbstractNotification;
|
|
|
|
class TestNotification extends AbstractNotification
|
|
{
|
|
public function rawText(): string
|
|
{
|
|
return 'Hello';
|
|
}
|
|
}
|