MigrationsStarted.php
TLDR
The MigrationsStarted.php
file is part of the Illuminate\Database\Events namespace and it contains the MigrationsStarted
class.
Classes
MigrationsStarted
The MigrationsStarted
class extends the MigrationsEvent
class. It does not have any additional functionality and serves as a marker for the start of migrations.
<?php
namespace Illuminate\Database\Events;
class MigrationsStarted extends MigrationsEvent
{
//
}