for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author @jayS-de <[email protected]>
*/
namespace Commercetools\Core\Model\Product;
use Commercetools\Core\Model\Common\Collection;
* @package Commercetools\Core\Model\Product
* @method FacetResult current()
* @method FacetResultCollection add(FacetResult $element)
* @method FacetResult getAt($offset)
class FacetResultCollection extends Collection
{
const OFFSET = 'offset';
protected $type = '\Commercetools\Core\Model\Product\FacetResult';
* @param $name
* @return FacetResult
public function getByName($name)
return $this->getAt($name);
}