/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Queue/Attributes/UniqueFor.php
19 строк
340 B
Luke Kuzmish
hint the unit (#60289)
28 май 2026, 02:29
Не верифицирован
28 май 2026, 02:29
b5547f6
Код
Авторство
О чём код?
<?php namespace Illuminate\Queue\Attributes; use Attribute; #[Attribute(Attribute::TARGET_CLASS)] class UniqueFor { /** * Create a new attribute instance. * * @param int $uniqueFor Seconds to consider the queueable unique for. */ public function __construct(public int $uniqueFor) { // } }