latitude = $this->validateValue($latitude, 'latitude', $allowNull); $this->longitude = $this->validateValue($longitude, 'longitude', $allowNull); } /** * Get the latitude * * Example: * ``` * $latitude = $point->latitude(); * ``` * * @return float|null */ public function latitude() { $this->checkContext('latitude', func_get_args()); return $this->latitude; } /** * Set the latitude * * Non-numeric values will result in an exception * * Example: * ``` * $point->setLatitude(42.279594); * ``` * * @param int|float $latitude The new latitude * @return GeoPoint * @throws InvalidArgumentException */ public function setLatitude($latitude) { $this->latitude = $this->validateValue($latitude, 'latitude'); return $this; } /** * Get the longitude * * Example: * ``` * $longitude = $point->longitude(); * ``` * * @return float|null */ public function longitude() { $this->checkContext('longitude', func_get_args()); return $this->longitude; } /** * Set the longitude * * Non-numeric values will result in an exception. * * Example: * ``` * $point->setLongitude(-83.732124); * ``` * * @param float|int $longitude The new longitude value * @return GeoPoint * @throws InvalidArgumentException */ public function setLongitude($longitude) { $this->longitude = $this->validateValue($longitude, 'longitude'); return $this; } /** * Return a GeoPoint * * Example: * ``` * $point = $point->point(); * ``` * * @return array [LatLng](https://cloud.google.com/datastore/reference/rest/Shared.Types/LatLng) */ public function point() { return ['latitude' => $this->latitude, 'longitude' => $this->longitude]; } /** * Let people know if they accidentally use the getter in setter context. * * @param string $method the method name * @param array $args The method arguments * @throws InvalidArgumentException * @return void */ private function checkContext($method, array $args) { if (count($args) > 0) { throw new \InvalidArgumentException(sprintf('Calling method %s with arguments is unsupported.', $method)); } } /** * Check a given value's validity as a coordinate. * * Numeric values will be cast to type `float`. All other values will raise * an exception with the exception of `null`, if `$allowNull` is set to true. * * @param mixed $value The coordinate value. * @param string $type The coordinate type for error reporting. * @param bool $allowNull [optional] Whether null values should be allowed. * **Defaults to** `false`. * @return float|null */ private function validateValue($value, $type, $allowNull = false) { if (!is_numeric($value) && (!$allowNull || $allowNull && $value !== null)) { throw new \InvalidArgumentException(sprintf('Given %s must be a numeric value.', $type)); } return $allowNull && $value === null ? $value : (double) $value; } }