for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CondParse\Operand;
use CondParse\OperandStack;
abstract class AbstractValueOperand extends AbstractOperand
{
public function consumeTokens(OperandStack $operandStack)
return $this;
}