gossi\codegen\model\parts\PropertiesPart::clearProperties PHP 메소드

clearProperties() 공개 메소드

Clears all properties
public clearProperties ( )
    public function clearProperties()
    {
        foreach ($this->properties as $property) {
            $property->setParent(null);
        }
        $this->properties->clear();
        return $this;
    }