/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Queue/Events/QueueBusy.php
20 строк
404 B
Ahmed Alaa
Make QueueBusy event consistent with other queue events (#56673)
17 авг 2025, 22:50
Не верифицирован
17 авг 2025, 22:50
f4f9156
Код
Авторство
О чём код?
<?php namespace Illuminate\Queue\Events; class QueueBusy { /** * Create a new event instance. * * @param string $connectionName The connection name. * @param string $queue The queue name. * @param int $size The size of the queue. */ public function __construct( public $connectionName, public $queue, public $size, ) { } }