Browse Source

Source code formatting

git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@19657 44c647ce-9c0f-0410-b52a-842ac1e357ba
jonathan_maron 16 years ago
parent
commit
7951bd1e5f
1 changed files with 2 additions and 4 deletions
  1. 2 4
      library/Zend/Service/LiveDocx/MailMerge.php

+ 2 - 4
library/Zend/Service/LiveDocx/MailMerge.php

@@ -177,6 +177,7 @@ class Zend_Service_LiveDocx_MailMerge extends Zend_Service_LiveDocx
     public function setFieldValue($field, $value)
     {
         $this->_fieldValues[$field] = $value;
+        
         return $this;
     }
 
@@ -354,7 +355,6 @@ class Zend_Service_LiveDocx_MailMerge extends Zend_Service_LiveDocx
     {
         $this->logIn();
         
-        $ret    = null;
         $format = strtolower($format);
         
         try {
@@ -368,9 +368,7 @@ class Zend_Service_LiveDocx_MailMerge extends Zend_Service_LiveDocx
             );
         }
 
-        $ret = base64_decode($result->RetrieveDocumentResult);
-        
-        return $ret;
+        return base64_decode($result->RetrieveDocumentResult);
     }
 
     /**