<?php

class Summary
{
    public static function total($dataProvider, $field)
    {
        $total = 0;
        foreach ($dataProvider as $item) {
            $total += $item[$field];
        }

        return $total;
    }
}
