fuc-new/vendor/illuminate/database/Events/NoPendingMigrations.php
hellcat 1fe8673f62 1
2025-10-01 13:34:29 +08:00

25 lines
380 B
PHP
Executable File

<?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;
}
}