Prado\Data\Common\Pgsql\TPgsqlTableColumn::getPHPType PHP Метод

getPHPType() публичный Метод

Overrides parent implementation, returns PHP type from the db type.
public getPHPType ( ) : boolean
Результат boolean derived PHP primitive type from the column db type.
    public function getPHPType()
    {
        $dbtype = strtolower($this->getDbType());
        foreach (self::$types as $type => $dbtypes) {
            if (in_array($dbtype, $dbtypes)) {
                return $type;
            }
        }
        return 'string';
    }
TPgsqlTableColumn