Skip to content

Commit

Permalink
Using float everywhere (instead of mixed double/float)
Browse files Browse the repository at this point in the history
  • Loading branch information
DusanKasan committed Jun 2, 2016
1 parent dd418ed commit a9badfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/CollectionTrait.php
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ public function sizeIsBetween($fromSize, $toSize)
/**
* Returns a sum of all values in this collection.
*
* @return double
* @return float
*/
public function sum()
{
Expand All @@ -819,7 +819,7 @@ public function sum()
/**
* Returns average of values from this collection.
*
* @return double
* @return float
*/
public function average()
{
Expand Down

0 comments on commit a9badfc

Please sign in to comment.