Cartalyst\Sentinel\Activations\IlluminateActivationRepository::__construct PHP Метод

__construct() публичный Метод

Create a new Illuminate activation repository.
public __construct ( string $model = null, integer $expires = null ) : void
$model string
$expires integer
Результат void
    public function __construct($model = null, $expires = null)
    {
        if (isset($model)) {
            $this->model = $model;
        }
        if (isset($expires)) {
            $this->expires = $expires;
        }
    }