public function StaticReflectionParser::getUseStatements

Get the use statements from this file.

File

drupal/core/vendor/doctrine/common/lib/Doctrine/Common/Reflection/StaticReflectionParser.php, line 241

Class

StaticReflectionParser
Parses a file for namespaces/use/class declarations.

Namespace

Doctrine\Common\Reflection

Code

public function getUseStatements() {
  $this
    ->parse();
  return $this->useStatements;
}