Another variation of the correct answer:
$params = [
'query' => [
'option_1' => string,
'option_2' => string
]
];
And then call your request:
$response = $guzzle_client->request('GET','/api.com',$params);
Another variation of the correct answer:
$params = [
'query' => [
'option_1' => string,
'option_2' => string
]
];
And then call your request:
$response = $guzzle_client->request('GET','/api.com',$params);