mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-13 07:00:08 +01:00
24 lines
380 B
PHP
24 lines
380 B
PHP
<?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;
|
|
}
|
|
}
|