Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Foundation
/
Http
/
Middleware
:
DatabaseRefreshed.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Illuminate\Database\Events; use Illuminate\Contracts\Database\Events\MigrationEvent as MigrationEventContract; class DatabaseRefreshed implements MigrationEventContract { /** * Create a new event instance. * * @param string|null $database * @param bool $seeding * @return void */ public function __construct( public ?string $database = null, public bool $seeding = false ) { // } }