kahlan\Summary::total PHP Method

total() public method

Return the total number of specs.
public total ( ) : integer
return integer
    public function total()
    {
        $total = 0;
        foreach ($this->_logs as $key => $value) {
            $total += count($value);
        }
        return $total;
    }