27 lines
504 B
PHP
27 lines
504 B
PHP
|
<?php
|
||
|
|
||
|
namespace Illuminate\Database\Events;
|
||
|
|
||
|
use Illuminate\Contracts\Database\Events\MigrationEvent as MigrationEventContract;
|
||
|
|
||
|
abstract class MigrationsEvent implements MigrationEventContract
|
||
|
{
|
||
|
/**
|
||
|
* The migration method that was invoked.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
public $method;
|
||
|
|
||
|
/**
|
||
|
* Create a new event instance.
|
||
|
*
|
||
|
* @param string $method
|
||
|
* @return void
|
||
|
*/
|
||
|
public function __construct($method)
|
||
|
{
|
||
|
$this->method = $method;
|
||
|
}
|
||
|
}
|