Update ModelOption.php

This commit is contained in:
黄朝晖 2019-08-29 15:15:24 +08:00 committed by GitHub
parent ef78ddb08f
commit 254c4b3730
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,36 +104,22 @@ class ModelOption
return $this;
}
/**
* @return string
*/
public function getUses(): string
{
return $this->uses;
}
/**
* @param string $uses
* @return ModelOption
*/
public function setUses(string $uses): ModelOption
{
$this->uses = $uses;
return $this;
}
/**
* @return bool
*/
public function isRefreshFillable(): bool
{
return $this->refreshFillable;
}
/**
* @param bool $refreshFillable
* @return ModelOption
*/
public function setRefreshFillable(bool $refreshFillable): ModelOption
{
$this->refreshFillable = $refreshFillable;