function PhpFileCleaner::skipComment
1 call to PhpFileCleaner::skipComment()
- PhpFileCleaner::clean in vendor/
composer/ class-map-generator/ src/ PhpFileCleaner.php
File
-
vendor/
composer/ class-map-generator/ src/ PhpFileCleaner.php, line 172
Class
- PhpFileCleaner
- @author Jordi Boggiano <j.boggiano@seld.be> @internal
Namespace
Composer\ClassMapGeneratorCode
private function skipComment() : void {
$this->index += 2;
while ($this->index < $this->len) {
if ($this->contents[$this->index] === '*' && $this->peek('/')) {
$this->index += 2;
break;
}
$this->index += 1;
}
}