Skip to content

Commit

Permalink
Merge pull request #189 from nicolas-grekas/patch-1
Browse files Browse the repository at this point in the history
Fix parse error on PHP 7.3
  • Loading branch information
nyamsprod committed Jun 8, 2021
2 parents f7240d3 + 5c654ee commit 273eba7
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/Idna.php
Expand Up @@ -15,7 +15,6 @@

use League\Uri\Exceptions\IdnSupportMissing;
use League\Uri\Exceptions\SyntaxError;
use UnexpectedValueException;
use function defined;
use function function_exists;
use function idn_to_ascii;
Expand Down
2 changes: 1 addition & 1 deletion src/IdnaInfo.php
Expand Up @@ -52,7 +52,7 @@ final class IdnaInfo
/**
* @var array<int, string>
*/
private array $errorList;
private $errorList;

private function __construct(string $result, bool $isTransitionalDifferent, int $errors)
{
Expand Down

0 comments on commit 273eba7

Please sign in to comment.