Skip to content

Instantly share code, notes, and snippets.

@mcsee
Last active November 29, 2022 01:27
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/a1794b5ca43c5229bb9e1c8b6a8b1041 to your computer and use it in GitHub Desktop.
Save mcsee/a1794b5ca43c5229bb9e1c8b6a8b1041 to your computer and use it in GitHub Desktop.
<?
final class GeographicCoordinate{
function __construct($latitude, $longitude) {
if (!$this->isValidLatitude($latitude)) {
throw new InvalidLatitudeException($latitude);
}
// ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment