Skip to content

Commit

Permalink
Merge pull request #23 from emenkens/add-php81-support
Browse files Browse the repository at this point in the history
Add php 8.1 support
  • Loading branch information
sadortun authored Feb 15, 2022
2 parents 1ddb69d + 8b671b7 commit 97ac770
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/CrEOF/Geo/WKB/Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ private function readGeometry()
}

$this->dimensions = $this->getDimensions($this->type);
$this->pointSize = 2 + strlen($this->getDimensionType($this->dimensions));
$this->pointSize = 2 + strlen($this->getDimensionType($this->dimensions) || '');

$typeName = $this->getTypeName($this->type);

Expand Down

0 comments on commit 97ac770

Please # to comment.