Skip to content

Commit

Permalink
Fix PHP 5 compat in Registration
Browse files Browse the repository at this point in the history
  • Loading branch information
kelunik committed Feb 7, 2016
1 parent 4048b03 commit 1fd1eb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Registration.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Registration {
private $authorizations;
private $certificates;

public function __construct(string $location, array $contact = [], string $agreement = null, array $authorizations = [], array $certificates = []) {
public function __construct($location, array $contact = [], $agreement = null, array $authorizations = [], array $certificates = []) {
$this->location = $location;
$this->contact = $contact;
$this->agreement = $agreement;
Expand Down

0 comments on commit 1fd1eb2

Please sign in to comment.