izzum\rules\XorRule::toString PHP Method

toString() public method

public toString ( ) : string
return string
    public function toString()
    {
        // includes the namespace
        $original = $this->original->toString();
        $other = $this->other->toString();
        return "({$original} xor {$other})";
    }