public function PHP_Token_Stream::getClasses

Return value

array

File

drupal/core/vendor/phpunit/php-token-stream/PHP/Token/Stream.php, line 243

Class

PHP_Token_Stream
A stream of PHP tokens.

Code

public function getClasses() {
  if ($this->classes !== NULL) {
    return $this->classes;
  }
  $this
    ->parse();
  return $this->classes;
}