2023-07-15 10:16:32 +08:00
|
|
|
<?php
|
2023-07-17 09:56:51 +08:00
|
|
|
|
2023-07-15 10:16:32 +08:00
|
|
|
namespace GuzzleHttp\Command\Guzzle\QuerySerializer;
|
|
|
|
|
|
|
|
interface QuerySerializerInterface
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Aggregate query params and transform them into a string
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function aggregate(array $queryParams);
|
2023-07-17 09:56:51 +08:00
|
|
|
}
|