geolocation-8.x-3.x-dev/modules/geolocation_geometry/src/GeometryType/MultiLineString.php
modules/geolocation_geometry/src/GeometryType/MultiLineString.php
<?php
namespace Drupal\geolocation_geometry\GeometryType;
/**
* Multi line string.
*/
class MultiLineString extends Collection {
/**
* Constructor.
*/
public function __construct(array $components) {
parent::__construct();
foreach ($components as $comp) {
if (!($comp instanceof LineString)) {
throw new \Exception("MultiLineString can only contain LineString elements");
}
}
$this->components = $components;
}
}
