for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bavix\Iterator\Traits;
trait IteratorAggregate
{
/**
* @return \Bavix\Iterator\Iterator
*/
public function getIterator()
return new \Bavix\Iterator\Iterator($this->data);
}