canonicalizeBody() protected method

protected canonicalizeBody ( $string )
 protected function canonicalizeBody($string)
 {
     if (!$this->peclLoaded) {
         return parent::canonicalizeBody($string);
     }
     if (false && $this->dropFirstLF === true) {
         if ($string[0] == "\r" && $string[1] == "\n") {
             $string = substr($string, 2);
         }
     }
     $this->dropFirstLF = false;
     if (strlen($string)) {
         $this->dkimHandler->body($string);
     }
 }