| Current Path : /home/webg5288/www/laravel_kendal/vendor/filament/widgets/src/Concerns/ |
| Current File : /home/webg5288/www/laravel_kendal/vendor/filament/widgets/src/Concerns/CanPoll.php |
<?php
namespace Filament\Widgets\Concerns;
trait CanPoll
{
protected static ?string $pollingInterval = '5s';
protected function getPollingInterval(): ?string
{
return static::$pollingInterval;
}
}