CRM-15789 - Move htmlAttributes helper to utils class
[civicrm-core.git] / CRM / Utils / Verp.php
index cf84a101abd83da0fb32f752b6e087fdd8cb7f77..afe1a6849cd87a0df44303d355689449ce6eec0b 100644 (file)
@@ -23,7 +23,7 @@
  | 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)
@@ -64,12 +64,13 @@ class CRM_Utils_Verp {
   /**
    * Encode the sender's address with the VERPed recipient.
    *
-   * @param string $sender    The address of the sender
-   * @param string $recipient The address of the recipient
+   * @param string $sender
+   *   The address of the sender.
+   * @param string $recipient
+   *   The address of the recipient.
    *
-   * @return string           The VERP encoded address
-   * @access public
-   * @static
+   * @return string
+   *   The VERP encoded address
    */
   public static function encode($sender, $recipient) {
     preg_match('/(.+)\@([^\@]+)$/', $sender, $match);
@@ -91,17 +92,17 @@ class CRM_Utils_Verp {
   /**
    * Decode the address and return the sender and recipient as an array
    *
-   * @param string $address   The address to be decoded
+   * @param string $address
+   *   The address to be decoded.
    *
-   * @return array            The tuple ($sender, $recipient)
-   * @access public
-   * @static
+   * @return array
+   *   The tuple ($sender, $recipient)
    */
   public static function &verpdecode($address) {
     preg_match('/^(.+)-([^=]+)=([^\@]+)\@(.+)/', $address, $match);
 
-    $slocal  = $match[1];
-    $rlocal  = $match[2];
+    $slocal = $match[1];
+    $rlocal = $match[2];
     $rdomain = $match[3];
     $sdomain = $match[4];
 
@@ -112,5 +113,5 @@ class CRM_Utils_Verp {
 
     return array("$slocal@$sdomain", "$rlocal@$rdomain");
   }
-}
 
+}