mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2026-02-07 17:55:32 +00:00
16 lines
238 B
PHP
16 lines
238 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Location;
|
|
|
|
interface GeometryInterface
|
|
{
|
|
/**
|
|
* Returns an array containing all assigned points.
|
|
*
|
|
* @return array<Coordinate>
|
|
*/
|
|
public function getPoints(): array;
|
|
}
|