vd/vendor/illuminate/contracts/Database/ModelIdentifier.php
2018-11-05 09:26:30 +08:00

45 lines
790 B
PHP

<?php
namespace Illuminate\Contracts\Database;
class ModelIdentifier
{
/**
* The class name of the model.
*
* @var string
*/
public $class;
/**
* The unique identifier of the model.
*
* This may be either a single ID or an array of IDs.
*
* @var mixed
*/
public $id;
/**
* The connection name of the model.
*
* @var string|null
*/
public $connection;
/**
* Create a new model identifier.
*
* @param string $class
* @param mixed $id
* @param mixed $connection
* @return void
*/
public function __construct($class, $id, $connection)
{
$this->id = $id;
$this->class = $class;
$this->connection = $connection;
}
}