File "MigrationsEvent.php"
Full Path: /home/fundopuh/trader.fxex.org/vendor/laravel/framework/src/Illuminate/Database/MigrationsEvent.php
File size: 504 bytes
MIME-type: text/x-php
Charset: utf-8
<?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;
}
}