Doctrine\DBAL\Platforms\MySqlPlatform::_getCommonIntegerTypeDeclarationSQL PHP Метод

_getCommonIntegerTypeDeclarationSQL() защищенный Метод

{@inheritDoc}
protected _getCommonIntegerTypeDeclarationSQL ( array $columnDef )
$columnDef array
    protected function _getCommonIntegerTypeDeclarationSQL(array $columnDef)
    {
        $autoinc = '';
        if (!empty($columnDef['autoincrement'])) {
            $autoinc = ' AUTO_INCREMENT';
        }
        return $this->getUnsignedDeclaration($columnDef) . $autoinc;
    }
MySqlPlatform