1: <?php 2: 3: namespace BN\Compiler\Postfix\Operator; 4: 5: interface OperatorEvaluator 6: { 7: public function __invoke(array $operands); 8: } 9: