Skip to content

Commit

Permalink
fixed accidental stringconversion of all tuple values
Browse files Browse the repository at this point in the history
  • Loading branch information
Niehztog committed Jul 23, 2015
1 parent 50d5b6e commit c8acce4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Math/Tuple.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public function __construct($data)
*/
public function squeezeHoles()
{
$this->data = explode(":", implode(":",$this->data));
$this->data = array_values($this->data);
}

/**
Expand Down

0 comments on commit c8acce4

Please sign in to comment.