vito/tests/Unit/NotificationChannels/TestNotification.php
Saeed Vaziry f70963d6bb
fix notification chanels and more tests (#108)
* fix notification chanels and more tests

* fix code style
2024-02-16 21:10:17 +01:00

14 lines
226 B
PHP

<?php
namespace Tests\Unit\NotificationChannels;
use App\Notifications\AbstractNotification;
class TestNotification extends AbstractNotification
{
public function rawText(): string
{
return 'Hello';
}
}