PMA\libraries\DisplayResults::_getClassForNumericColumnType PHP Method

_getClassForNumericColumnType() private method

Check if the column contains numeric data. If yes, then set the column header's alignment right
See also: _getDraggableClassForSortableColumns()
private _getClassForNumericColumnType ( array $fields_meta, &$th_class ) : void
$fields_meta array set of field properties
return void
    private function _getClassForNumericColumnType($fields_meta, &$th_class)
    {
        if (preg_match('@int|decimal|float|double|real|bit|boolean|serial@i', $fields_meta->type)) {
            $th_class[] = 'right';
        }
    }
DisplayResults