Swift_Signers_DKIMSigner::reset PHP Method

reset() public method

Reset the Signer.
See also: Swift_Signer::reset()
public reset ( )
    public function reset()
    {
        $this->headerHash = null;
        $this->signedHeaders = array();
        $this->bodyHash = null;
        $this->bodyHashHandler = null;
        $this->bodyCanonIgnoreStart = 2;
        $this->bodyCanonEmptyCounter = 0;
        $this->bodyCanonLastChar = null;
        $this->bodyCanonSpace = false;
    }

Usage Example

Example #1
0
 public function reset()
 {
     $this->_dkimHandler = null;
     parent::reset();
     return $this;
 }
All Usage Examples Of Swift_Signers_DKIMSigner::reset