Skip to content

Commit

Permalink
Make bounding box public
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Čihař <michal@cihar.com>
  • Loading branch information
nijel committed Jun 24, 2016
1 parent d297656 commit 29f17ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ShapeFile.php
Expand Up @@ -37,7 +37,7 @@ class ShapeFile {

public $lastError = '';

private $boundingBox = array('xmin' => 0.0, 'ymin' => 0.0, 'xmax' => 0.0, 'ymax' => 0.0);
public $boundingBox = array('xmin' => 0.0, 'ymin' => 0.0, 'xmax' => 0.0, 'ymax' => 0.0);
private $fileLength = 0;
private $shapeType = 0;

Expand Down

0 comments on commit 29f17ae

Please sign in to comment.