Jarves\Configuration\Field::getPhpDataType PHP 메소드

getPhpDataType() 공개 메소드

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