public function PHP_Token_Stream::getInterfaces

Return value

array

File

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

Class

PHP_Token_Stream
A stream of PHP tokens.

Code

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