Skip to content

Commit

Permalink
revert constructor change, fixes #31 (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
shyim authored Aug 30, 2024
1 parent 0c78eaa commit 34a5b96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Rize/UriTemplate.php
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ class UriTemplate
$base_uri,
$params = array();

public function __construct($base_uri = '', $params = array(), ?Parser $parser = null)
public function __construct($base_uri = '', $params = array(), Parser $parser = null)
{
$this->base_uri = $base_uri;
$this->params = $params;

0 comments on commit 34a5b96

Please sign in to comment.