You are here

public function PHP_Token_Includes::getType in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpunit/php-token-stream/src/Token.php \PHP_Token_Includes::getType()

Return value

string

File

vendor/phpunit/php-token-stream/src/Token.php, line 258

Class

PHP_Token_Includes

Code

public function getType() {
  if ($this->type === null) {
    $this
      ->process();
  }
  return $this->type;
}