芝麻web文件管理V1.00
编辑当前文件:/home/mgatv524/giga.mgaplay.com.br/vendor/jmikola/geojson/src/GeoJson/BoundingBox.php
$bounds[$i + ($count / 2)]) { throw new \InvalidArgumentException('BoundingBox min values must precede max values'); } } $this->bounds = $bounds; } /** * Return the bounds for this BoundingBox object. * * @return float[] */ public function getBounds() { return $this->bounds; } /** * @see http://php.net/manual/en/jsonserializable.jsonserialize.php */ public function jsonSerialize() { return $this->bounds; } /** * @see JsonUnserializable::jsonUnserialize() */ final public static function jsonUnserialize($json) { if ( ! is_array($json)) { throw UnserializationException::invalidValue('BoundingBox', $json, 'array'); } return new self($json); } }