Home
last modified time | relevance | path

Searched refs:allowedComponentType (Results 1 – 6 of 6) sorted by relevance

/plugin/geophp/vendor/funiq/geophp/src/Geometry/
H A DMultiSurface.php14 public function __construct($components = [], $allowEmptyComponents = true, $allowedComponentType = Surface::class) argument
16 parent::__construct($components, $allowEmptyComponents, $allowedComponentType);
H A DMultiCurve.php14 public function __construct($components = [], $allowEmptyComponents = true, $allowedComponentType = Curve::class) argument
16 parent::__construct($components, $allowEmptyComponents, $allowedComponentType);
H A DSurface.php19 public function __construct($components = [], $allowEmptyComponents = true, $allowedComponentType = Curve::class) argument
21 parent::__construct($components, $allowEmptyComponents, $allowedComponentType);
H A DCurve.php18 public function __construct($components = [], $allowEmptyComponents = false, $allowedComponentType = Point::class) argument
23 parent::__construct($components, $allowEmptyComponents, $allowedComponentType);
H A DCollection.php27 * @param string $allowedComponentType A class the components must be instance of
34 $allowedComponentType = Geometry::class argument
41 if ($components[$i] instanceof $allowedComponentType) {
60 ' components, expected type is ' . $allowedComponentType
H A DMultiGeometry.php15 public function __construct($components = [], $allowEmptyComponents = true, $allowedComponentType = Geometry::class) argument
17 parent::__construct($components, $allowEmptyComponents, $allowedComponentType);