Ouzo\Tools\Model\Template\ClassStub::getPropertiesAsString PHP Method

getPropertiesAsString() public method

    public function getPropertiesAsString()
    {
        $properties = array();
        foreach ($this->_attributes as $name => $type) {
            $properties[] = " * @property {$type} {$name}";
        }
        return implode("\n", $properties);
    }