You are here

public function PHP_Token_Stream::getInterfaces in Zircon Profile 8.0

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

Return value

array

File

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

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;
}