From abb24c45e1360d14fe3ff6bed1faba52fe79453e Mon Sep 17 00:00:00 2001
From: Thibault Dockx <thibault.dockx@fusiondirectory.org>
Date: Mon, 5 Feb 2024 16:33:03 +0000
Subject: [PATCH] :ambulance: Feat(CORE) - Fixes phpDoc

Fixes PHPDocs
---
 .../tasks/class_tasksLifeCycle.inc            | 20 +++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/plugins/configuration/tasks/class_tasksLifeCycle.inc b/plugins/configuration/tasks/class_tasksLifeCycle.inc
index c7ba9ba46..aa629e0c2 100644
--- a/plugins/configuration/tasks/class_tasksLifeCycle.inc
+++ b/plugins/configuration/tasks/class_tasksLifeCycle.inc
@@ -127,9 +127,9 @@ class tasksLifeCycle extends simplePlugin
 
   }
 
-  /*
- *  Set attributes values with defined supann states from configuration
- */
+  /**
+   *  Set attributes values with defined supann states from configuration
+   */
   protected function setSupannStates (): void
   {
     global $config;
@@ -168,9 +168,9 @@ class tasksLifeCycle extends simplePlugin
     $this->attributesAccess['fdTasksLifeCyclePostSubState']->setChoices(array_keys($postSubStatesList), array_values($postSubStatesList));
   }
 
-  /*
-* Retrieve all the DNs from groups or members
-*/
+  /**
+   * Retrieve all the DNs from groups or members
+   */
   public function getListOfDN (): void
   {
     global $config;
@@ -206,10 +206,10 @@ class tasksLifeCycle extends simplePlugin
     }
   }
 
-  /*
- * Generate slave tasks, careful that main task cannot be changed cause subtasks are not updated.
- * It would be dangerous to edit subs tasks if some are under processed already.
- */
+  /**
+   * Generate slave tasks, careful that main task cannot be changed cause subtasks are not updated.
+   * It would be dangerous to edit subs tasks if some are under processed already.
+   */
   public function generateSlaveTasks ()
   {
     global $config;
-- 
GitLab