Chris@13: Chris@13: */ Chris@13: class AssignThisVariablePass extends CodeCleanerPass Chris@13: { Chris@13: /** Chris@13: * Validate that the user input does not assign the `$this` variable. Chris@13: * Chris@13: * @throws RuntimeException if the user assign the `$this` variable Chris@13: * Chris@13: * @param Node $node Chris@13: */ Chris@13: public function enterNode(Node $node) Chris@13: { Chris@13: if ($node instanceof Assign && $node->var instanceof Variable && $node->var->name === 'this') { Chris@13: throw new FatalErrorException('Cannot re-assign $this', 0, E_ERROR, null, $node->getLine()); Chris@13: } Chris@13: } Chris@13: }