--- /tmp/dsg/dolibarr/htdocs/core/modules/stock/github_modules_stock.php
+++ /tmp/dsg/dolibarr/htdocs/core/modules/stock/client_modules_stock.php
@@ -23,31 +23,31 @@
  */

 abstract class ModelePDFStock 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 = 'stock';

-		$liste = array();

+        $type = 'stock';

+        $liste = array();

 

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

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

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

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

 

-		return $liste;

-	}

+        return $liste;

+    }

 }