fix the constructor of UrlGenerator

This commit is contained in:
Simon Vieille 2022-11-19 21:08:28 +01:00
parent e54019d4d9
commit 4491c12684
Signed by: deblan
GPG key ID: 579388D585F70417

View file

@ -16,7 +16,7 @@ class UrlGenerator
public array $options = [];
public function __construct(string $service, string $method, array $options)
public function __construct(string $service, string $method, array $options = [])
{
$this->service = $service;
$this->method = $method;