Skip to content

Commit d9932f7

Browse files
trippogithub-actions[bot]
authored andcommitted
Fix styling
1 parent 4098e90 commit d9932f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Resources/BaseResource.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function __construct(Client $client)
1818
$this->client = $client;
1919
}
2020

21-
protected function request(string $method = 'get', null|int|string $path = null, array $data = [], bool $forceUrl = false): array
21+
protected function request(string $method = 'get', int|string $path = null, array $data = [], bool $forceUrl = false): array
2222
{
2323
return $this->client->request(
2424
method: $method,
@@ -28,7 +28,7 @@ protected function request(string $method = 'get', null|int|string $path = null,
2828
);
2929
}
3030

31-
protected function requestData(string $method = 'get', null|int|string $path = null, array $data = [], bool $forceUrl = false): array
31+
protected function requestData(string $method = 'get', int|string $path = null, array $data = [], bool $forceUrl = false): array
3232
{
3333
return $this->request($method, $path, $data, $forceUrl)['data'];
3434
}

0 commit comments

Comments
 (0)