getVarName(); $right = $compiler->getVarName(); $compiler ->raw(sprintf('(is_string($%s = ', $left)) ->subcompile($this->getNode('left')) ->raw(sprintf(') && is_string($%s = ', $right)) ->subcompile($this->getNode('right')) ->raw(sprintf(') && str_starts_with($%1$s, $%2$s))', $left, $right)) ; } public function operator(Compiler $compiler): Compiler { return $compiler->raw(''); } }