Files
T
2025-11-25 22:42:56 +01:00

14 lines
329 B
PHP

<?php
namespace Livewire\Features\SupportTesting {
use Filament\Notifications\Notification;
class Testable {
public function assertNotified(Notification | string $notification = null): static {}
public function assertNotNotified(Notification | string $notification = null): static {}
}
}