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;
 3: 
 4: /**
 5:  * A template echo tag statement.
 6:  *
 7:  * For example, <?=$a?>
 8:  */
 9: class EchoTagStatementNode extends StatementNode {
10:   /**
11:    * @var CommaListNode
12:    */
13:   protected $expressions;
14: 
15:   /**
16:    * @return CommaListNode
17:    */
18:   public function getExpressionList() {
19:     return $this->expressions;
20:   }
21: 
22:   /**
23:    * @return NodeCollection|ExpressionNode[]
24:    */
25:   public function getExpressions() {
26:     return $this->expressions->getItems();
27:   }
28: }
29: 
Pharborist API documentation generated by ApiGen