Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/location/lib/geometry/type/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/location/lib/geometry/type/basegeometry.php

<?php

namespace Bitrix\Location\Geometry\Type;

abstract class BaseGeometry
{
	/**
	 * @return string
	 */
	public function getGeometryType(): string
	{
		return (new \ReflectionClass($this))->getShortName();
	}

	/**
	 * @param BaseGeometry $coordinate
	 * @return bool|null
	 */
	public function contains(BaseGeometry $geometry): ?bool
	{
		return null;
	}

	/**
	 * @return array
	 */
	abstract public function asArray(): array;
}