Class FalseNode
Boolean FALSE.
Represents the boolean FALSE constant, spelled either FALSE
or false
. This
does not represent other falsy values, like empty strings or 0.
-
Pharborist\Node
implements
Pharborist\NodeInterface
-
Pharborist\ParentNode
implements
Pharborist\ParentNodeInterface
-
Pharborist\Constants\ConstantNode
implements
Pharborist\ExpressionNode
-
Pharborist\Types\BooleanNode
implements
Pharborist\Types\ScalarNode
-
Pharborist\Types\FalseNode
Methods summary
public static
Pharborist\Types\FalseNode
|
#
create( boolean $boolean = FALSE )
Creates a new FalseNode.
Parameters
- $boolean
- Parameter is ignored.
Returns
Overrides
|
public
boolean
|
#
toValue( )
Gets the boolean value of the node.
Gets the boolean value of the node.
Returns
boolean
|
Methods inherited from Pharborist\ParentNode
__clone(),
__toString(),
acceptVisitor(),
addChild(),
addChildren(),
append(),
childCount(),
children(),
clear(),
find(),
firstChild(),
firstToken(),
getSourcePosition(),
getText(),
getTree(),
has(),
isDescendant(),
isEmpty(),
lastChild(),
lastToken(),
mergeNode(),
prepend(),
walk()
|
Methods inherited from Pharborist\Node
after(),
appendTo(),
before(),
closest(),
fromValue(),
furthest(),
getLogicalBlock(),
getRoot(),
getStatement(),
hasRoot(),
index(),
insertAfter(),
insertBefore(),
is(),
isAllOf(),
isAnyOf(),
next(),
nextAll(),
nextToken(),
nextUntil(),
parent(),
parents(),
parentsUntil(),
prependTo(),
previous(),
previousAll(),
previousToken(),
previousUntil(),
remove(),
replaceAll(),
replaceWith(),
siblings(),
sortKey(),
swapWith()
|