Merge pull request #6521 from totten/master-setting-misc
[civicrm-core.git] / CRM / Utils / Verp.php
index 628f7dccd746bf6d5ab4f092f8ffca7fc5e24a13..71a59b9136617b8242a77278ea08af7e09cceb20 100644 (file)
@@ -1,9 +1,9 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 4.6                                                |
+ | CiviCRM version 4.7                                                |
  +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2014                                |
+ | Copyright CiviCRM LLC (c) 2004-2015                                |
  +--------------------------------------------------------------------+
  | This file is a part of CiviCRM.                                    |
  |                                                                    |
  | GNU Affero General Public License or the licensing of CiviCRM,     |
  | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  * Class to handle encoding and decoding Variable Enveleope Return Path (VERP)
  * headers.
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2014
+ * @copyright CiviCRM LLC (c) 2004-2015
  * $Id: $
  *
  */
@@ -90,7 +90,7 @@ class CRM_Utils_Verp {
   }
 
   /**
-   * Decode the address and return the sender and recipient as an array
+   * Decode the address and return the sender and recipient as an array.
    *
    * @param string $address
    *   The address to be decoded.
@@ -113,4 +113,5 @@ class CRM_Utils_Verp {
 
     return array("$slocal@$sdomain", "$rlocal@$rdomain");
   }
+
 }