PATH:
home
/
lab2454c
/
bancmils.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Database
/
Events
<?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; } }
[-] TransactionCommitted.php
[edit]
[-] DatabaseRefreshed.php
[edit]
[-] SchemaLoaded.php
[edit]
[-] MigrationEvent.php
[edit]
[+]
..
[-] StatementPrepared.php
[edit]
[-] MigrationsEnded.php
[edit]
[-] ModelsPruned.php
[edit]
[-] MigrationStarted.php
[edit]
[-] SchemaDumped.php
[edit]
[-] TransactionRolledBack.php
[edit]
[-] TransactionBeginning.php
[edit]
[-] MigrationEnded.php
[edit]
[-] MigrationsStarted.php
[edit]
[-] ConnectionEvent.php
[edit]
[-] QueryExecuted.php
[edit]
[-] .htaccess
[edit]
[-] NoPendingMigrations.php
[edit]