File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Database/Events
Upload
[..]
MigrationSkipped.php (377 B)
Edit
Rename
Del
MigrationsPruned.php (836 B)
Edit
Rename
Del
NoPendingMigrations.php (360 B)
Edit
Rename
Del
Edit: MigrationsPruned.php
<?php namespace Illuminate\Database\Events; use Illuminate\Database\Connection; class MigrationsPruned { /** * The database connection instance. * * @var \Illuminate\Database\Connection */ public $connection; /** * The database connection name. * * @var string|null */ public $connectionName; /** * The path to the directory where migrations were pruned. * * @var string */ public $path; /** * Create a new event instance. * * @param \Illuminate\Database\Connection $connection * @param string $path */ public function __construct(Connection $connection, string $path) { $this->connection = $connection; $this->connectionName = $connection->getName(); $this->path = $path; } }
Simpan