for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MIT License
* Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
*/
namespace SprykerEco\Service\AkeneoPim\Dependencies\External\Api\Wrapper;
use Akeneo\Pim\ApiClient\Pagination\ResourceCursorInterface;
class AkeneoResourceCursor implements AkeneoResourceCursorInterface
{
* @var \Akeneo\Pim\ApiClient\Pagination\ResourceCursorInterface
private $resourceCursor;
* @param \Akeneo\Pim\ApiClient\Pagination\ResourceCursorInterface $resourceCursor
public function __construct(ResourceCursorInterface $resourceCursor)
$this->resourceCursor = $resourceCursor;
}
* {@inheritdoc}
public function getPageSize()
return $this->resourceCursor
->getPageSize();
public function current()
->current();
public function next()
$this->resourceCursor
->next();
public function key()
->key();
public function valid()
->valid();
public function rewind()
->rewind();