Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. TokenStream.php

function TokenStream::skipWhitespace

Skips next whitespace if any.

File

vendor/symfony/css-selector/Parser/TokenStream.php, line 148

Class

TokenStream
CSS selector token stream.

Namespace

Symfony\Component\CssSelector\Parser

Code

public function skipWhitespace() : void {
    $peek = $this->getPeek();
    if ($peek->isWhitespace()) {
        $this->getNext();
    }
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal