izzum\rules\OrRule::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} or {$other})";
    }