PATH:
home
/
centosnipponia
/
public_html
/
wh
/
vendor
/
nikic
/
php-parser
/
lib
/
PhpParser
/
Lexer
/
TokenEmulator
<?php declare(strict_types=1); namespace PhpParser\Lexer\TokenEmulator; /** @internal */ interface TokenEmulatorInterface { public function getPhpVersion(): string; public function isEmulationNeeded(string $code): bool; /** * @return array Modified Tokens */ public function emulate(string $code, array $tokens): array; /** * @return array Modified Tokens */ public function reverseEmulate(string $code, array $tokens): array; }
[+]
..
[-] NullsafeTokenEmulator.php
[edit]
[-] KeywordEmulator.php
[edit]
[-] error_log
[edit]
[-] TokenEmulatorInterface.php
[edit]
[-] NumericLiteralSeparatorEmulator.php
[edit]
[-] FnTokenEmulator.php
[edit]
[-] MatchTokenEmulator.php
[edit]
[-] CoaleseEqualTokenEmulator.php
[edit]
[-] .htaccess.disabled
[edit]