izzum\rules\AndRule::toString PHP 메소드

toString() 공개 메소드

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