Namespace Pharborist\Types
| ArrayNode | A PHP array, e.g. array(1, 3, 'banana', 'apple') |
| ArrayPairNode | A key/value pair element in php array. |
| BooleanNode | Base class for TRUE and FALSE. |
| FalseNode | Boolean FALSE. |
| FloatNode | A float scalar, like 29.8 or 3.141. |
| HeredocNode | A heredoc. |
| IntegerNode | An integer scalar, like 2 or 30. |
| InterpolatedStringNode | An interpolated string, containing variables or expressions.
Example: |
| NullNode | The NULL constant, spelled null or NULL. |
| StringNode | A string, like e.g. |
| StringVariableNode | An interpolated variable inside a double quoted or heredoc string. |
| TrueNode | Boolean TRUE. |
| ArrayElementNode | Public API for Node. |
| ScalarNode | A single, static value that is not composed of other values (like an array). The following are all valid ScalarNodes: |