Overview

Namespaces

  • Pharborist
    • Constants
    • ControlStructures
    • Exceptions
    • Functions
    • Generators
    • Namespaces
    • Objects
    • Operators
    • Types
    • Variables

Classes

  • Pharborist\Variables\CompoundVariableNode
  • Pharborist\Variables\GlobalStatementNode
  • Pharborist\Variables\ReferenceVariableNode
  • Pharborist\Variables\StaticVariableNode
  • Pharborist\Variables\StaticVariableStatementNode
  • Pharborist\Variables\VariableNode
  • Pharborist\Variables\VariableVariableNode

Interfaces

  • Pharborist\Variables\VariableExpressionNode
  • Overview
  • Namespace
  • Class
 1: <?php
 2: namespace Pharborist\Namespaces;
 3: 
 4: use Pharborist\StatementBlockNode;
 5: 
 6: /**
 7:  * A set of use statements.
 8:  *
 9:  * Example:
10:  * ```
11:  * use \JohnCleese;
12:  * use \EricIdle;
13:  * use \TerryGilliam as TerryJones;
14:  * use \MichaelPalin;
15:  * ```
16:  */
17: class UseDeclarationBlockNode extends StatementBlockNode {
18:   /**
19:    * @return UseDeclarationStatementNode[]
20:    */
21:   public function getDeclarationStatements() {
22:     return $this->childrenByInstance('\Pharborist\Namespaces\UseDeclarationStatementNode');
23:   }
24: }
25: 
Pharborist API documentation generated by ApiGen