for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace EngineWorks\DBAL\Traits;
use EngineWorks\DBAL\Iterators\ResultIterator;
use EngineWorks\DBAL\Result;
trait ResultImplementsIterator
{
public function getIterator(): ResultIterator
/* @var Result $this */
return new ResultIterator($this);
}