Skip to content

Commit 673272c

Browse files
adamzelyczslischka
authored andcommitted
#29 Add search method for Orders
1 parent 3c77a22 commit 673272c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

src/Fapi/FapiClient/EndPoints/Orders.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,13 @@ public function __construct(FapiRestClient $client)
2020
$this->path = '/orders';
2121
}
2222

23+
/**
24+
* @param array<mixed> $parameters
25+
* @return array<mixed>
26+
*/
27+
public function search(array $parameters = []): array
28+
{
29+
return $this->client->getSingularResource($this->path . '/search', $parameters);
30+
}
31+
2332
}

0 commit comments

Comments
 (0)