style fixes
[civicrm-core.git] / CRM / Contact / Task.php
index 4a7ac57eeadb9d120344793e8df595132ddb794f..4caa253392ff2f58a4bd808218e54907e2deda21 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        |
  +--------------------------------------------------------------------+
-*/
+ */
 
 /**
  *
@@ -70,7 +70,6 @@ class CRM_Contact_Task {
    * The task array
    *
    * @var array
-   * @static
    */
   static $_tasks = NULL;
 
@@ -78,7 +77,6 @@ class CRM_Contact_Task {
    * The optional task array
    *
    * @var array
-   * @static
    */
   static $_optionalTasks = NULL;
 
@@ -281,7 +279,6 @@ class CRM_Contact_Task {
    *
    * @return array
    *   the set of tasks for a group of contacts
-   * @static
    */
   public static function &taskTitles() {
     self::initTasks();
@@ -361,7 +358,6 @@ class CRM_Contact_Task {
    *
    * @return array
    *   the set of optional tasks for a group of contacts
-   * @static
    */
   public static function &optionalTaskTitle() {
     $tasks = array(
@@ -387,4 +383,5 @@ class CRM_Contact_Task {
       CRM_Utils_Array::value('result', self::$_tasks[$value]),
     );
   }
+
 }