--- /tmp/dsg/dolibarr/htdocs/core/modules/usergroup/github_modules_usergroup.class.php
+++ /tmp/dsg/dolibarr/htdocs/core/modules/usergroup/client_modules_usergroup.class.php
@@ -38,30 +38,30 @@
  */

 abstract class ModelePDFUserGroup extends CommonDocGenerator

 {

-	/**

-	 * @var string Error code (or message)

-	 */

-	public $error = '';

+    /**

+     * @var string Error code (or message)

+     */

+    public $error = '';

 

 

-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps

-	/**

-	 *	Return list of active generation modules

-	 *

-	 *  @param	DoliDB	$db     			Database handler

-	 *  @param  integer	$maxfilenamelength  Max length of value to show

-	 *  @return	array						List of templates

-	 */

-	public static function liste_modeles($db, $maxfilenamelength = 0)

-	{

-		// phpcs:enable

-		global $conf;

+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps

+    /**

+     *	Return list of active generation modules

+     *

+     *  @param	DoliDB	$db     			Database handler

+     *  @param  integer	$maxfilenamelength  Max length of value to show

+     *  @return	array						List of templates

+     */

+    public static function liste_modeles($db, $maxfilenamelength = 0)

+    {

+        // phpcs:enable

+        global $conf;

 

-		$type = 'group';

-		$list = array();

+        $type = 'group';

+        $list = array();

 

-		include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';

-		$list = getListOfModels($db, $type, $maxfilenamelength);

-		return $list;

-	}

+        include_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';

+        $list = getListOfModels($db, $type, $maxfilenamelength);

+        return $list;

+    }

 }