/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Queue/Attributes/Timeout.php
19 строк
336 B
Jack Bayliss
13.x-add-unit-docblock-to-attrs (#60431)
07 июн 2026, 18:42
Не верифицирован
07 июн 2026, 18:42
1f6a84b
Код
Авторство
О чём код?
<?php namespace Illuminate\Queue\Attributes; use Attribute; #[Attribute(Attribute::TARGET_CLASS)] class Timeout { /** * Create a new attribute instance. * * @param int $timeout Seconds before the job is considered timed out. */ public function __construct(public int $timeout) { // } }