1: <?php
2: namespace Pharborist\Types;
3:
4: use Pharborist\ExpressionNode;
5: use Pharborist\TokenNode;
6:
7: /**
8: * An integer scalar, like 2 or 30.
9: */
10: class IntegerNode extends TokenNode implements ExpressionNode, ScalarNode {
11: /**
12: * @return int
13: */
14: public function toValue() {
15: return (int) $this->getText();
16: }
17: }
18: