File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Database/Events
Upload
[..]
MigrationSkipped.php (377 B)
Edit
Rename
Del
MigrationsEnded.php (103 B)
Edit
Rename
Del
MigrationsEvent.php (543 B)
Edit
Rename
Del
MigrationsPruned.php (836 B)
Edit
Rename
Del
NoPendingMigrations.php (360 B)
Edit
Rename
Del
SchemaDumped.php (745 B)
Edit
Rename
Del
SchemaLoaded.php (745 B)
Edit
Rename
Del
StatementPrepared.php (391 B)
Edit
Rename
Del
Edit: SchemaLoaded.php
<?php namespace Illuminate\Database\Events; class SchemaLoaded { /** * The database connection instance. * * @var \Illuminate\Database\Connection */ public $connection; /** * The database connection name. * * @var string */ public $connectionName; /** * The path to the schema dump. * * @var string */ public $path; /** * Create a new event instance. * * @param \Illuminate\Database\Connection $connection * @param string $path */ public function __construct($connection, $path) { $this->connection = $connection; $this->connectionName = $connection->getName(); $this->path = $path; } }
Simpan