/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Database/Events/MigrationsEvent.php
20 строк
543 B
Andrew Brown
[12.x] remove `@return` docblocks on constructors (#55076)
19 мар 2025, 23:10
Не верифицирован
19 мар 2025, 23:10
8f0e00b
Код
Авторство
О чём код?
<?php namespace Illuminate\Database\Events; use Illuminate\Contracts\Database\Events\MigrationEvent as MigrationEventContract; abstract class MigrationsEvent implements MigrationEventContract { /** * Create a new event instance. * * @param string $method The migration method that was invoked. * @param array<string, mixed> $options The options provided when the migration method was invoked. */ public function __construct( public $method, public array $options = [], ) { } }