for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Oliverde8\Component\PhpEtl\Item;
/**
* Class GroupedItem
*
* @author de Cramer Oliver<[email protected]>
* @copyright 2018 Oliverde8
* @package Oliverde8\Component\PhpEtl\Item
*/
class GroupedItem implements GroupedItemInterface
{
protected \Iterator $iterator;
* GroupedItem constructor.
* @param $iterator
public function __construct(\Iterator $iterator)
$this->iterator = $iterator;
}
* @inheritdoc
public function getIterator(): \Iterator
return $this->iterator;