1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<?php
/**
*/
namespace Commercetools\Core\Model\ApiClient;
use Commercetools\Core\Model\Common\Collection;
/**
* @package Commercetools\Core\Model\ApiClient
* @method ApiClientCollection add(ApiClient $element)
* @method ApiClient current()
* @method ApiClient getAt($offset)
* @method ApiClient getById($offset)
*/
class ApiClientCollection extends Collection
{
protected $type = ApiClient::class;
}