for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author @jenschude <[email protected]>
*/
namespace Commercetools\Core\Request\Query;
class OrderedMultiParameter extends Parameter
{
private $position;
public function __construct($key, $value = null, $position = 0)
$this->position = $position;
parent::__construct($key, $value);
}
public function getId()
return sprintf("%s-%010d", $this->key, $this->position);