Overrides AbstractBinary::compile
public function compile(Compiler $compiler) : void { if (\PHP_VERSION_ID >= 80000) { parent::compile($compiler); return; } $compiler->raw('(0 === CoreExtension::compare(') ->subcompile($this->getNode('left')) ->raw(', ') ->subcompile($this->getNode('right')) ->raw('))'); }