mirror of
https://github.com/retailcrm/mailgun-php.git
synced 2024-11-27 15:26:04 +03:00
21 lines
520 B
PHP
21 lines
520 B
PHP
|
<?php
|
||
|
|
||
|
namespace Guzzle\Http\QueryAggregator;
|
||
|
|
||
|
use Guzzle\Http\QueryString;
|
||
|
|
||
|
/**
|
||
|
* Aggregates nested query string variables using commas
|
||
|
*/
|
||
|
class CommaAggregator implements QueryAggregatorInterface
|
||
|
{
|
||
|
public function aggregate($key, $value, QueryString $query)
|
||
|
{
|
||
|
if ($query->isUrlEncoding()) {
|
||
|
return array($query->encodeValue($key) => implode(',', array_map(array($query, 'encodeValue'), $value)));
|
||
|
} else {
|
||
|
return array($key => implode(',', $value));
|
||
|
}
|
||
|
}
|
||
|
}
|