comment fixes
[civicrm-core.git] / CRM / Contact / Page / View / Tag.php
index 5702958758a3c1bd08815c2182a3e281250d91f3..f15688b8890e4a5e53e564d4f85ef3918b9b4d36 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_Tag extends CRM_Core_Page {
 
   /**
-   * This function is called when action is browse
-   *
-   * return null
+   * Called when action is browse.
    */
   public function browse() {
     $controller = new CRM_Core_Controller_Simple('CRM_Tag_Form_Tag', ts('Contact Tags'), $this->_action);
@@ -65,10 +61,10 @@ class CRM_Contact_Page_View_Tag extends CRM_Core_Page {
   }
 
   /**
-   * 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();
@@ -77,4 +73,5 @@ class CRM_Contact_Page_View_Tag extends CRM_Core_Page {
 
     return parent::run();
   }
+
 }