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