Merge pull request #5097 from PalanteJon/CRM-15917
[civicrm-core.git] / CRM / Utils / JSON.php
index 20117a58860173ce7e42ce2ea9cf09b8a8de74d9..adb349fb900ecbe40bda112f5839d95a0a751fb7 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        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
@@ -39,7 +39,7 @@
 class CRM_Utils_JSON {
 
   /**
-   * Output json to the client
+   * Output json to the client.
    * @param mixed $input
    */
   public static function output($input) {
@@ -49,7 +49,7 @@ class CRM_Utils_JSON {
   }
 
   /**
-   * Create JSON object
+   * Create JSON object.
    * @deprecated
    *
    * @param array $params
@@ -121,7 +121,7 @@ class CRM_Utils_JSON {
   }
 
   /**
-   * encode data for dataTable plugin
+   * encode data for dataTable plugin.
    *
    * @param array $params
    *   Associated array of row elements.
@@ -164,4 +164,5 @@ class CRM_Utils_JSON {
 
     return $sOutput;
   }
+
 }