v.0.1
This commit is contained in:
24
vendor/illuminate/database/Events/NoPendingMigrations.php
vendored
Normal file
24
vendor/illuminate/database/Events/NoPendingMigrations.php
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace Illuminate\Database\Events;
|
||||
|
||||
class NoPendingMigrations
|
||||
{
|
||||
/**
|
||||
* The migration method that was called.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
public $method;
|
||||
|
||||
/**
|
||||
* Create a new event instance.
|
||||
*
|
||||
* @param string $method
|
||||
* @return void
|
||||
*/
|
||||
public function __construct($method)
|
||||
{
|
||||
$this->method = $method;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user