🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing: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; } }
Save Changes
Cancel
Create New File
Create New Folder