yii\apidoc\models\PropertyDoc::getIsWriteOnly PHP 메소드

getIsWriteOnly() 공개 메소드

public getIsWriteOnly ( ) : boolean
리턴 boolean if property is write only
    public function getIsWriteOnly()
    {
        return $this->getter === null && $this->setter !== null;
    }