Skip to content

Commit 507bd48

Browse files
authored
Update Curl.php
1 parent 62d4a3d commit 507bd48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Curl.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public static function callCached(int $expire, string $method, string $url, mixe
4747
* @param array<string,mixed> $options
4848
* @return array<string,mixed>
4949
*/
50-
public static function navigate(string $method, string $url, mixed $data = '', array $headers = [], array $options = []): array
50+
public static function navigate(string $method, string $url, $data = '', array $headers = [], array $options = []): array
5151
{
5252
return self::call($method, $url, $data, $headers, array_merge($options, array('CURLOPT_FOLLOWLOCATION' => true)));
5353
}
@@ -58,7 +58,7 @@ public static function navigate(string $method, string $url, mixed $data = '', a
5858
* @param array<string,mixed> $options
5959
* @return array<string,mixed>
6060
*/
61-
public static function call(string $method, string $url, mixed $data = '', array $headers = [], array $options = []): array
61+
public static function call(string $method, string $url, $data = '', array $headers = [], array $options = []): array
6262
{
6363
if (Debugger::$enabled) {
6464
$time = microtime(true);

0 commit comments

Comments
 (0)