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

Breadcrumb

  1. Drupal Core 11.1.x

EnumTokenEmulator.php

Namespace

PhpParser\Lexer\TokenEmulator

File

vendor/nikic/php-parser/lib/PhpParser/Lexer/TokenEmulator/EnumTokenEmulator.php

View source
<?php

declare (strict_types=1);
namespace PhpParser\Lexer\TokenEmulator;

use PhpParser\PhpVersion;
final class EnumTokenEmulator extends KeywordEmulator {
    public function getPhpVersion() : PhpVersion {
        return PhpVersion::fromComponents(8, 1);
    }
    public function getKeywordString() : string {
        return 'enum';
    }
    public function getKeywordToken() : int {
        return \T_ENUM;
    }
    protected function isKeywordContext(array $tokens, int $pos) : bool {
        return parent::isKeywordContext($tokens, $pos) && isset($tokens[$pos + 2]) && $tokens[$pos + 1]->id === \T_WHITESPACE && $tokens[$pos + 2]->id === \T_STRING;
    }

}

Classes

Title Deprecated Summary
EnumTokenEmulator

API Navigation

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