comment fixes
[civicrm-core.git] / CRM / Contact / Page / Task.php
index 2cc69fccdff2afb5d595f33746c7e1fa695c79a3..7b740caa588dc10c96aabb2058aaeaf93dfed9cb 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
  */
 
 /**
  * This is a dummy class that does nothing at the moment.
- * the template is used primarily for displaying result page
+ *
+ * The template is used primarily for displaying result page
  * of tasks performed on contacts. Contacts are searched/selected
  * and then subjected to Tasks/Actions.
- *
  */
 class CRM_Contact_Page_Task extends CRM_Core_Page {
 
   /**
-   * Returns the page title
+   * Returns the page title.
    *
-   * @return string the title of the page
-   * @access public
+   * @return string
+   *   the title of the page
    */
-  function getTitle() {
+  public function getTitle() {
     return "Task Results";
   }
-}
 
+}