/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Log/Events/MessageLogged.php
20 строк
468 B
Andrew Brown
add trailling commas in multline method signatures (#56992)
10 сен 2025, 17:56
Не верифицирован
10 сен 2025, 17:56
a986461
Код
Авторство
О чём код?
<?php namespace Illuminate\Log\Events; class MessageLogged { /** * Create a new event instance. * * @param "emergency"|"alert"|"critical"|"error"|"warning"|"notice"|"info"|"debug" $level The log "level". * @param string $message The log message. * @param array $context The log context. */ public function __construct( public $level, public $message, public array $context = [], ) { } }