44 lines
856 B
PHP
44 lines
856 B
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
|
||
|
* @return void
|
||
|
*/
|
||
|
public function __construct(Connection $connection, string $path)
|
||
|
{
|
||
|
$this->connection = $connection;
|
||
|
$this->connectionName = $connection->getName();
|
||
|
$this->path = $path;
|
||
|
}
|
||
|
}
|