14 lines
329 B
PHP
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 {}
|
|
}
|
|
|
|
}
|