LMongo\Eloquent\Model::__set PHP Метод

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

Dynamically set attributes on the model.
public __set ( string $key, mixed $value ) : void
$key string
$value mixed
Результат void
    public function __set($key, $value)
    {
        $this->setAttribute($key, $value);
    }
Model