You are here

public function Scanner::unconsume in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/masterminds/html5/src/HTML5/Parser/Scanner.php \Masterminds\HTML5\Parser\Scanner::unconsume()

Unconsume some of the data. This moves the data pointer backwards.

Parameters

int $howMany: The number of characters to move the pointer back.

File

vendor/masterminds/html5/src/HTML5/Parser/Scanner.php, line 106

Class

Scanner
The scanner.

Namespace

Masterminds\HTML5\Parser

Code

public function unconsume($howMany = 1) {
  $this->is
    ->unconsume($howMany);
}