1
0
mirror of https://github.com/danog/amp.git synced 2024-11-26 20:15:00 +01:00
amp/lib/Internal/PrivateIterator.php
Aaron Piotrowski 992d6e9b39 Return named classes
Better for var_dump and stack traces.
2018-01-27 19:47:46 +01:00

28 lines
603 B
PHP

<?php
namespace Amp\Internal;
use Amp\Iterator;
use Amp\Promise;
/**
* Wraps an Iterator instance that has public methods to emit, complete, and fail into an object that only allows
* access to the public API methods.
*/
class PrivateIterator implements Iterator {
/** @var \Amp\Iterator */
private $iterator;
public function __construct(Iterator $iterator) {
$this->iterator = $iterator;
}
public function advance(): Promise {
return $this->iterator->advance();
}
public function getCurrent() {
return $this->iterator->getCurrent();
}
}