init
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
<?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,
|
||||
) {
|
||||
//
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user