Jarves\Configuration\Field::getPhpDataType PHP Method

getPhpDataType() public method

Returns the internal data type.
public getPhpDataType ( ) : string
return string
    public function getPhpDataType()
    {
        if ($this->hasFieldType()) {
            return $this->getFieldType()->getPhpDataType();
        } else {
            return 'string';
        }
    }
Field