Exemplo n.º 1
0
 /**
  * Initializes a sink with the given data.
  *
  * @param string $data
  */
 public function __construct(string $data = '')
 {
     $this->buffer = new Structures\Buffer($data);
     $this->iterator = $this->buffer->getIterator();
 }