QuerySerializerInterface.php 291 B

12345678910111213
  1. <?php
  2. namespace GuzzleHttp\Command\Guzzle\QuerySerializer;
  3. interface QuerySerializerInterface
  4. {
  5. /**
  6. * Aggregate query params and transform them into a string
  7. *
  8. * @param array $queryParams
  9. * @return string
  10. */
  11. public function aggregate(array $queryParams);
  12. }