Debug_Bar_Pretty_Output::get_table_rows PHP Method

get_table_rows() private static method

Generate table rows.
private static get_table_rows ( array $array ) : string
$array array Array to be shown in the table.
return string
        private static function get_table_rows($array)
        {
            $output = '';
            foreach ($array as $key => $value) {
                $output .= self::get_table_row($key, $value);
            }
            return $output;
        }