1: <?php 2: namespace Pharborist\Operators; 3: 4: /** 5: * Unary '+' operation, which does nothing. 6: */ 7: class PlusNode extends UnaryOperationNode { 8: 9: } 10: