Update Cluster.php (#32)

This commit is contained in:
Mustafa Karabulut 2017-01-23 10:24:50 +02:00 committed by Arkadiusz Kondas
parent d19ddb8507
commit 95fc139170
1 changed files with 8 additions and 0 deletions

View File

@ -136,4 +136,12 @@ class Cluster extends Point implements IteratorAggregate, Countable
{
return count($this->points);
}
/**
* @param array $newCoordinates
*/
public function setCoordinates(array $newCoordinates)
{
$this->coordinates = $newCoordinates;
}
}