12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace Illuminate\Database\Events;
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Contracts\Database\Events\MigrationEvent as MigrationEventContract;
- abstract class MigrationEvent implements MigrationEventContract
- {
- /**
- * An migration instance.
- *
- * @var \Illuminate\Database\Migrations\Migration
- */
- public $migration;
- /**
- * The migration method that was called.
- *
- * @var string
- */
- public $method;
- /**
- * Create a new event instance.
- *
- * @param \Illuminate\Database\Migrations\Migration $migration
- * @param string $method
- * @return void
- */
- public function __construct(Migration $migration, $method)
- {
- $this->method = $method;
- $this->migration = $migration;
- }
- }
|