1: <?php
2:
3: namespace BN\Compiler\Postfix\Token;
4:
5: interface ProcessKeywordStrategy
6: {
7: public function isFirstOperandVariable();
8:
9: public function getOperands();
10:
11: public function tokensToOperands(array $tokens);
12:
13: public function getEvaluator();
14: }
15: