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