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

19 lines
377 B
PHP

<?php
namespace Illuminate\Database\Events;
use Illuminate\Contracts\Database\Events\MigrationEvent;
class MigrationSkipped implements MigrationEvent
{
/**
* Create a new event instance.
*
* @param string $migrationName The name of the migration that was skipped.
*/
public function __construct(
public $migrationName,
) {
}
}