Merge pull request #6601 from colemanw/CRM-16974
[civicrm-core.git] / CRM / Contact / Page / View / Sunlight.php
index 868e80f1c4a30d85fde91fdfc66be89afaae193b..add1aa6afc3190fef375043526f87e1f36a46238 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        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2014
- * $Id$
- *
+ * @copyright CiviCRM LLC (c) 2004-2015
  */
 class CRM_Contact_Page_View_Sunlight extends CRM_Contact_Page_View {
 
   /**
-   * This function is called when action is browse
-   *
-   * return null
+   * Called when action is browse.
    */
   public function browse() {
     // get the primary city, state and zip for the contact
@@ -53,10 +49,10 @@ class CRM_Contact_Page_View_Sunlight extends CRM_Contact_Page_View {
   }
 
   /**
-   * This function is the main function that is called when the page loads,
+   * the main function that is called when the page loads,
    * it decides the which action has to be taken for the page.
    *
-   * return null
+   * @return null
    */
   public function run() {
     $this->preProcess();
@@ -65,4 +61,5 @@ class CRM_Contact_Page_View_Sunlight extends CRM_Contact_Page_View {
 
     return parent::run();
   }
+
 }