Skip to content
This repository has been archived by the owner on Apr 1, 2020. It is now read-only.

Commit

Permalink
Fix typo in Options
Browse files Browse the repository at this point in the history
  • Loading branch information
jbelien committed Jul 25, 2018
1 parent 8e66961 commit 603e28d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ogr2ogr.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public function __construct(string $destination, string $source, $layers = [])
$this->_destination = $destination;
$this->_source = $source;
$this->_layers = (is_string($layers) ? [$layers] : $layers);
$this->_options = new ogr2ogr\options();
$this->_options = new ogr2ogr\Options();

$this->_setCommand();
}
Expand Down
2 changes: 1 addition & 1 deletion src/ogrinfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function __construct(string $source, $layers = [])
{
$this->_source = $source;
$this->_layers = (is_string($layers) ? [$layers] : $layers);
$this->_options = new ogrinfo\options();
$this->_options = new ogrinfo\Options();

$this->_setCommand();
}
Expand Down

0 comments on commit 603e28d

Please sign in to comment.