Skip to content

Instantly share code, notes, and snippets.

@mcsee
Last active July 16, 2020 00:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcsee/e0fb2b6319ad6df5f838d01894f46c69 to your computer and use it in GitHub Desktop.
Save mcsee/e0fb2b6319ad6df5f838d01894f46c69 to your computer and use it in GitHub Desktop.
<?
final class Polygon {
private $vertices;
public function getVertices(): Collection {
return $this->vertices;
}
public function setVertices(Collection $newVertices) {
$this->vertices = $newVertices;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment