Merge pull request #6454 from eileenmcnaughton/master
[civicrm-core.git] / CRM / Member / Task.php
index 8b070b13f895e0a876b1ecefa6712c6e5a15a016..19bc954e984f9480896a203bec37af38ba9e8992 100644 (file)
@@ -3,7 +3,7 @@
  +--------------------------------------------------------------------+
  | CiviCRM version 4.6                                                |
  +--------------------------------------------------------------------+
- | 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
+ * @copyright CiviCRM LLC (c) 2004-2015
  * $Id$
  *
  */
@@ -46,7 +46,6 @@ class CRM_Member_Task {
    * The task array
    *
    * @var array
-   * @static
    */
   static $_tasks = NULL;
 
@@ -54,7 +53,6 @@ class CRM_Member_Task {
    * The optional task array
    *
    * @var array
-   * @static
    */
   static $_optionalTasks = NULL;
 
@@ -64,7 +62,6 @@ class CRM_Member_Task {
    *
    * @return array
    *   the set of tasks for a group of contacts
-   * @static
    */
   public static function &tasks() {
     if (!(self::$_tasks)) {
@@ -134,7 +131,6 @@ class CRM_Member_Task {
    *
    * @return array
    *   the set of task titles
-   * @static
    */
   public static function &taskTitles() {
     self::tasks();
@@ -182,7 +178,6 @@ class CRM_Member_Task {
    *
    * @return array
    *   the set of tasks for a group of members
-   * @static
    */
   public static function getTask($value) {
     self::tasks();
@@ -195,4 +190,5 @@ class CRM_Member_Task {
       self::$_tasks[$value]['result'],
     );
   }
+
 }