PhalconRest\Transformers\ModelTransformer::getModelAttributes PHP Method

getModelAttributes() protected method

protected getModelAttributes ( )
    protected function getModelAttributes()
    {
        if (!$this->modelAttributes) {
            $modelClass = $this->getModelClass();
            $this->modelAttributes = $this->modelsMetadata->getAttributes(new $modelClass());
        }
        return $this->modelAttributes;
    }