proofdb/vendor/illuminate/database/Events/DatabaseRefreshed.php
2026-05-01 23:40:14 +08:00

21 lines
445 B
PHP

<?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
*/
public function __construct(
public ?string $database = null,
public bool $seeding = false,
) {
}
}