You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
260 B

1 week ago
  1. <?php
  2. namespace OSM\Element\Member;
  3. use OSM\Point;
  4. class Node extends Member
  5. {
  6. public Point $point;
  7. public function completeFromArray(array $array): static
  8. {
  9. $this->point = Point::createFromArray($array);
  10. return $this;
  11. }
  12. }