PMA\libraries\plugins\export\TableProperty::getPureType PHP Method

getPureType() public method

Gets the pure type
public getPureType ( ) : string
return string type
    public function getPureType()
    {
        $pos = mb_strpos($this->type, "(");
        if ($pos > 0) {
            return mb_substr($this->type, 0, $pos);
        }
        return $this->type;
    }