protected function iteratorToFile(iterable $iterator, $stream) : void { foreach ($iterator as $chunk) { fwrite($stream, $chunk); } }