Swift_Message::__clone PHP Method

__clone() public method

Clone Message Signers.
See also: Swift_Mime_SimpleMimeEntity::__clone()
public __clone ( )
    public function __clone()
    {
        parent::__clone();
        foreach ($this->bodySigners as $key => $bodySigner) {
            $this->bodySigners[$key] = clone $bodySigner;
        }
        foreach ($this->headerSigners as $key => $headerSigner) {
            $this->headerSigners[$key] = clone $headerSigner;
        }
    }