fuc/vendor/illuminate/database/Events/DatabaseRefreshed.php
2025-02-23 13:30:57 +08:00

23 lines
475 B
PHP
Executable File

<?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
) {
//
}
}