yii\apidoc\models\PropertyDoc::getIsWriteOnly PHP Method

getIsWriteOnly() public method

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