/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Queue/Attributes/DebounceFor.php
20 строк
479 B
Jack Bayliss
Update DebounceFor.php (#60388)
04 июн 2026, 20:24
Не верифицирован
04 июн 2026, 20:24
d2d6a81
Код
Авторство
О чём код?
<?php namespace Illuminate\Queue\Attributes; use Attribute; #[Attribute(Attribute::TARGET_CLASS)] class DebounceFor { /** * Create a new attribute instance. * * @param int $debounceFor Seconds to debounce the job for. * @param int|null $maxWait The maximum number of seconds the job can be deferred before it is forced to run. */ public function __construct(public int $debounceFor, public ?int $maxWait = null) { // } }