ConnectionEstablished.php
1 month ago
ConnectionEvent.php
2 years ago
DatabaseBusy.php
1 month ago
DatabaseRefreshed.php
2 years ago
MigrationEnded.php
2 years ago
MigrationEvent.php
2 years ago
MigrationStarted.php
2 years ago
MigrationsEnded.php
2 years ago
MigrationsEvent.php
2 years ago
MigrationsStarted.php
2 years ago
ModelsPruned.php
2 years ago
NoPendingMigrations.php
2 years ago
QueryExecuted.php
2 years ago
SchemaDumped.php
2 years ago
SchemaLoaded.php
2 years ago
StatementPrepared.php
2 years ago
TransactionBeginning.php
2 years ago
TransactionCommitted.php
2 years ago
TransactionCommitting.php
1 month ago
TransactionRolledBack.php
2 years ago
NoPendingMigrations.php
25 lines
| 1 | <?php |
| 2 | |
| 3 | namespace IAWPSCOPED\Illuminate\Database\Events; |
| 4 | |
| 5 | /** @internal */ |
| 6 | class NoPendingMigrations |
| 7 | { |
| 8 | /** |
| 9 | * The migration method that was called. |
| 10 | * |
| 11 | * @var string |
| 12 | */ |
| 13 | public $method; |
| 14 | /** |
| 15 | * Create a new event instance. |
| 16 | * |
| 17 | * @param string $method |
| 18 | * @return void |
| 19 | */ |
| 20 | public function __construct($method) |
| 21 | { |
| 22 | $this->method = $method; |
| 23 | } |
| 24 | } |
| 25 |