You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the definition of function public static function getHeaders(mixed $headers, ?array $globals = null): array $globals allows to use null but parseHeaders ($headers = $h->parseHeaders($headers, $globals);) require array that's leads to issue
In the definition of function
public static function getHeaders(mixed $headers, ?array $globals = null): array
$globals allows to use null but parseHeaders ($headers = $h->parseHeaders($headers, $globals);
) require array that's leads to issuehttps://github.com/formancehq/formance-sdk-php/blob/main/src/Utils/Utils.php#L157
It should be
public static function getHeaders(mixed $headers, array $globals = []): array
The text was updated successfully, but these errors were encountered: