Skip to content

Commit

Permalink
Fix failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kenguest committed Oct 4, 2023
1 parent aeab900 commit a7cd9b3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Services/OpenStreetMap/Object.php
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,9 @@ public function getVersion():?int
public function getAttributes()
{

if ($this->obj === null) {
return null;
}
if ($this->obj[0] === null) {
return null;
}
Expand Down

0 comments on commit a7cd9b3

Please sign in to comment.