Passed
Push — main ( 324b47...7af4bb )
by Rafael
43:55
created
htdocs/core/modules/mailings/modules_mailings.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
         return '';
157 157
     }
158 158
 
159
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
159
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
160 160
     /**
161 161
      * Met a jour nombre de destinataires
162 162
      *
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
      */
166 166
     public function update_nb($mailing_id)
167 167
     {
168
-		// phpcs:enable
168
+        // phpcs:enable
169 169
         // Mise a jour nombre de destinataire dans table des mailings
170 170
         $sql = "SELECT COUNT(*) nb FROM " . MAIN_DB_PREFIX . "mailing_cibles";
171 171
         $sql .= " WHERE fk_mailing = " . ((int) $mailing_id);
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
         return $j;
279 279
     }
280 280
 
281
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
281
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
282 282
     /**
283 283
      *  Supprime tous les destinataires de la table des cibles
284 284
      *
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
      */
288 288
     public function clear_target($mailing_id)
289 289
     {
290
-		// phpcs:enable
290
+        // phpcs:enable
291 291
         $sql = "DELETE FROM " . MAIN_DB_PREFIX . "mailing_cibles";
292 292
         $sql .= " WHERE fk_mailing = " . ((int) $mailing_id);
293 293
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
     public $sql;
75 75
 
76 76
 
77
-    public $evenunsubscribe = 0;        // Set this to 1 if you want to flag you also want to include email in target that has opt-out.
77
+    public $evenunsubscribe = 0; // Set this to 1 if you want to flag you also want to include email in target that has opt-out.
78 78
 
79 79
 
80 80
     /**
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
                         $part1 = $reg[1];
345 345
 
346 346
                         //$modName = ucfirst($reg[1]);
347
-                        $modName = 'mailing_' . $reg[1];  // name of selector submodule
347
+                        $modName = 'mailing_' . $reg[1]; // name of selector submodule
348 348
                         //print "file=$file modName=$modName"; exit;
349 349
                         if (in_array($modName, $modules)) {
350 350
                             $langs->load("errors");
Please login to merge, or discard this patch.
htdocs/core/modules/commande/modules_commande.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     public $atleastonediscount = 0;
60 60
 
61 61
 
62
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
62
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
63 63
     /**
64 64
      *  Return list of active generation modules
65 65
      *
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      */
70 70
     public static function liste_modeles($db, $maxfilenamelength = 0)
71 71
     {
72
-		// phpcs:enable
72
+        // phpcs:enable
73 73
         $type = 'order';
74 74
         $list = array();
75 75
 
Please login to merge, or discard this patch.
htdocs/core/modules/commande/doc/pdf_einstein.modules.php 2 patches
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
         $this->atleastonediscount = 0;
163 163
     }
164 164
 
165
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
165
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
166 166
     /**
167 167
      *  Function to build pdf onto disk
168 168
      *
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
      */
177 177
     public function write_file($object, $outputlangs, $srctemplatepath = '', $hidedetails = 0, $hidedesc = 0, $hideref = 0)
178 178
     {
179
-		// phpcs:enable
179
+        // phpcs:enable
180 180
         global $user, $langs, $conf, $mysoc, $db, $hookmanager, $nblines;
181 181
 
182 182
         if (!is_object($outputlangs)) {
@@ -663,8 +663,8 @@  discard block
 block discarded – undo
663 663
         }
664 664
     }
665 665
 
666
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
667
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
666
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
667
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
668 668
     /**
669 669
      *  Show payments table
670 670
      *
@@ -676,12 +676,12 @@  discard block
 block discarded – undo
676 676
      */
677 677
     protected function _tableau_versements(&$pdf, $object, $posy, $outputlangs)
678 678
     {
679
-		// phpcs:enable
679
+        // phpcs:enable
680 680
         return 1;
681 681
     }
682 682
 
683
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
684
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
683
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
684
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
685 685
     /**
686 686
      *   Show miscellaneous information (payment mode, payment term, ...)
687 687
      *
@@ -693,7 +693,7 @@  discard block
 block discarded – undo
693 693
      */
694 694
     protected function _tableau_info(&$pdf, $object, $posy, $outputlangs)
695 695
     {
696
-		// phpcs:enable
696
+        // phpcs:enable
697 697
         global $conf, $mysoc;
698 698
         $default_font_size = pdf_getPDFFontSize($outputlangs);
699 699
 
@@ -866,8 +866,8 @@  discard block
 block discarded – undo
866 866
         return $posy;
867 867
     }
868 868
 
869
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
870
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
869
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
870
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
871 871
     /**
872 872
      *  Show total to pay
873 873
      *
@@ -881,7 +881,7 @@  discard block
 block discarded – undo
881 881
      */
882 882
     protected function _tableau_tot(&$pdf, $object, $deja_regle, $posy, $outputlangs, $outputlangsbis = null)
883 883
     {
884
-		// phpcs:enable
884
+        // phpcs:enable
885 885
         global $conf, $mysoc, $hookmanager;
886 886
 
887 887
         $default_font_size = pdf_getPDFFontSize($outputlangs);
@@ -1142,7 +1142,7 @@  discard block
 block discarded – undo
1142 1142
         return ($tab2_top + ($tab2_hl * $index));
1143 1143
     }
1144 1144
 
1145
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1145
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1146 1146
     /**
1147 1147
      *   Show table for lines
1148 1148
      *
@@ -1247,8 +1247,8 @@  discard block
 block discarded – undo
1247 1247
         }
1248 1248
     }
1249 1249
 
1250
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1251
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1250
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1251
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1252 1252
     /**
1253 1253
      *  Show top header of page.
1254 1254
      *
@@ -1262,7 +1262,7 @@  discard block
 block discarded – undo
1262 1262
      */
1263 1263
     protected function _pagehead(&$pdf, $object, $showaddress, $outputlangs, $outputlangsbis = null, $titlekey = "PdfOrderTitle")
1264 1264
     {
1265
-		// phpcs:enable
1265
+        // phpcs:enable
1266 1266
         global $conf, $langs, $hookmanager;
1267 1267
 
1268 1268
         $ltrdirection = 'L';
@@ -1514,8 +1514,8 @@  discard block
 block discarded – undo
1514 1514
         return $top_shift;
1515 1515
     }
1516 1516
 
1517
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1518
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1517
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1518
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1519 1519
     /**
1520 1520
      *      Show footer of page. Need this->emetteur object
1521 1521
      *
@@ -1527,7 +1527,7 @@  discard block
 block discarded – undo
1527 1527
      */
1528 1528
     protected function _pagefoot(&$pdf, $object, $outputlangs, $hidefreetext = 0)
1529 1529
     {
1530
-		// phpcs:enable
1530
+        // phpcs:enable
1531 1531
         $showdetails = getDolGlobalInt('MAIN_GENERATE_DOCUMENTS_SHOW_FOOT_DETAILS', 0);
1532 1532
         return pdf_pagefoot($pdf, $outputlangs, 'ORDER_FREE_TEXT', $this->emetteur, $this->marge_basse, $this->marge_gauche, $this->page_hauteur, $object, $showdetails, $hidefreetext, $this->page_largeur, $this->watermark);
1533 1533
     }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1682,7 +1682,7 @@
 block discarded – undo
1682 1682
 
1683 1683
             $carac_client_name = pdfBuildThirdpartyName($thirdparty, $outputlangs);
1684 1684
 
1685
-            $mode =  'target';
1685
+            $mode = 'target';
1686 1686
             $carac_client = pdf_build_address($outputlangs, $this->emetteur, $object->thirdparty, ($usecontact ? $object->contact : ''), $usecontact, $mode, $object);
1687 1687
 
1688 1688
             // Show recipient
Please login to merge, or discard this patch.
htdocs/core/modules/commande/doc/pdf_eratosthene.modules.php 2 patches
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
         $this->atleastonediscount = 0;
147 147
     }
148 148
 
149
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
149
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
150 150
     /**
151 151
      *  Function to build pdf onto disk
152 152
      *
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
      */
161 161
     public function write_file($object, $outputlangs, $srctemplatepath = '', $hidedetails = 0, $hidedesc = 0, $hideref = 0)
162 162
     {
163
-		// phpcs:enable
163
+        // phpcs:enable
164 164
         global $user, $langs, $conf, $mysoc, $db, $hookmanager, $nblines;
165 165
 
166 166
         dol_syslog("write_file outputlangs->defaultlang=" . (is_object($outputlangs) ? $outputlangs->defaultlang : 'null'));
@@ -1352,7 +1352,7 @@  discard block
 block discarded – undo
1352 1352
         return ($tab2_top + ($tab2_hl * $index));
1353 1353
     }
1354 1354
 
1355
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1355
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1356 1356
     /**
1357 1357
      *   Show table for lines
1358 1358
      *
@@ -1413,8 +1413,8 @@  discard block
 block discarded – undo
1413 1413
         }
1414 1414
     }
1415 1415
 
1416
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1417
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1416
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1417
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1418 1418
     /**
1419 1419
      *  Show top header of page.
1420 1420
      *
@@ -1428,7 +1428,7 @@  discard block
 block discarded – undo
1428 1428
      */
1429 1429
     protected function _pagehead(&$pdf, $object, $showaddress, $outputlangs, $outputlangsbis = null, $titlekey = "PdfOrderTitle")
1430 1430
     {
1431
-		// phpcs:enable
1431
+        // phpcs:enable
1432 1432
         global $conf, $langs, $hookmanager, $mysoc;
1433 1433
 
1434 1434
         $ltrdirection = 'L';
@@ -1700,8 +1700,8 @@  discard block
 block discarded – undo
1700 1700
         return $top_shift;
1701 1701
     }
1702 1702
 
1703
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1704
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1703
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1704
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1705 1705
     /**
1706 1706
      *      Show footer of page. Need this->emetteur object
1707 1707
      *
@@ -1713,7 +1713,7 @@  discard block
 block discarded – undo
1713 1713
      */
1714 1714
     protected function _pagefoot(&$pdf, $object, $outputlangs, $hidefreetext = 0)
1715 1715
     {
1716
-		// phpcs:enable
1716
+        // phpcs:enable
1717 1717
         $showdetails = getDolGlobalInt('MAIN_GENERATE_DOCUMENTS_SHOW_FOOT_DETAILS', 0);
1718 1718
         return pdf_pagefoot($pdf, $outputlangs, 'ORDER_FREE_TEXT', $this->emetteur, $this->marge_basse, $this->marge_gauche, $this->page_hauteur, $object, $showdetails, $hidefreetext, $this->page_largeur, $this->watermark);
1719 1719
     }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1656,7 +1656,7 @@
 block discarded – undo
1656 1656
                 $carac_client_name = pdfBuildThirdpartyName($thirdparty, $outputlangs);
1657 1657
             }
1658 1658
 
1659
-            $mode =  'target';
1659
+            $mode = 'target';
1660 1660
             $carac_client = pdf_build_address($outputlangs, $this->emetteur, $object->thirdparty, ($usecontact ? $object->contact : ''), $usecontact, $mode, $object);
1661 1661
 
1662 1662
             // Show recipient
Please login to merge, or discard this patch.
htdocs/core/modules/commande/doc/pdf_proforma.modules.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -57,8 +57,8 @@  discard block
 block discarded – undo
57 57
     }
58 58
 
59 59
 
60
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
61
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
60
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
61
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
62 62
     /**
63 63
      *  Show top header of page.
64 64
      *
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
      */
73 73
     protected function _pagehead(&$pdf, $object, $showaddress, $outputlangs, $outputlangsbis = null, $titlekey = "InvoiceProForma")
74 74
     {
75
-		// phpcs:enable
75
+        // phpcs:enable
76 76
         return parent::_pagehead($pdf, $object, $showaddress, $outputlangs, $outputlangsbis, $titlekey);
77 77
     }
78 78
 }
Please login to merge, or discard this patch.
htdocs/core/modules/stock/modules_stock.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     public $version = 'dolibarr';
51 51
 
52 52
 
53
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
53
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
54 54
     /**
55 55
      *  Return list of active generation modules
56 56
      *
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      */
61 61
     public static function liste_modeles($db, $maxfilenamelength = 0)
62 62
     {
63
-		// phpcs:enable
63
+        // phpcs:enable
64 64
         $type = 'stock';
65 65
         $list = array();
66 66
 
Please login to merge, or discard this patch.
htdocs/core/modules/stock/doc/pdf_standard.modules.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
     }
120 120
 
121 121
 
122
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
122
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
123 123
     /**
124 124
      *  Function to build a document on disk using the generic odt module.
125 125
      *
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
      */
134 134
     public function write_file($object, $outputlangs, $srctemplatepath = '', $hidedetails = 0, $hidedesc = 0, $hideref = 0)
135 135
     {
136
-		// phpcs:enable
136
+        // phpcs:enable
137 137
         global $user, $langs, $conf, $mysoc, $db, $hookmanager;
138 138
 
139 139
         if (!is_object($outputlangs)) {
@@ -572,7 +572,7 @@  discard block
 block discarded – undo
572 572
         }
573 573
     }
574 574
 
575
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
575
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
576 576
     /**
577 577
      *   Show table for lines
578 578
      *
@@ -679,7 +679,7 @@  discard block
 block discarded – undo
679 679
         }
680 680
     }
681 681
 
682
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
682
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
683 683
     /**
684 684
      *  Show top header of page.
685 685
      *
@@ -833,7 +833,7 @@  discard block
 block discarded – undo
833 833
         return $top_shift;
834 834
     }
835 835
 
836
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
836
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
837 837
     /**
838 838
      *      Show footer of page. Need this->emetteur object
839 839
      *
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -630,7 +630,7 @@
 block discarded – undo
630 630
 
631 631
 
632 632
         if (empty($hidetop)) {
633
-            $pdf->line($this->marge_gauche, $tab_top + 11, $this->page_largeur - $this->marge_droite, $tab_top + 11);   // line takes a position y in 2nd parameter and 4th parameter
633
+            $pdf->line($this->marge_gauche, $tab_top + 11, $this->page_largeur - $this->marge_droite, $tab_top + 11); // line takes a position y in 2nd parameter and 4th parameter
634 634
             $pdf->SetXY($this->posxdesc - 1, $tab_top + 1);
635 635
             $pdf->MultiCell($this->wref, 3, $outputlangs->transnoentities("Ref"), '', 'L');
636 636
         }
Please login to merge, or discard this patch.
htdocs/core/modules/stock/doc/doc_generic_stock_odt.modules.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -190,7 +190,7 @@  discard block
 block discarded – undo
190 190
         return $texte;
191 191
     }
192 192
 
193
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
193
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
194 194
     /**
195 195
      *  Function to build a document on disk using the generic odt module.
196 196
      *
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
      */
205 205
     public function write_file($object, $outputlangs, $srctemplatepath, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
206 206
     {
207
-		// phpcs:enable
207
+        // phpcs:enable
208 208
         global $stock, $langs, $conf, $mysoc, $hookmanager, $user;
209 209
 
210 210
         if (empty($srctemplatepath)) {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -173,7 +173,7 @@
 block discarded – undo
173 173
         $maxfilesizearray = getMaxFileSizeArray();
174 174
         $maxmin = $maxfilesizearray['maxmin'];
175 175
         if ($maxmin > 0) {
176
-            $texte .= '<input type="hidden" name="MAX_FILE_SIZE" value="' . ($maxmin * 1024) . '">';    // MAX_FILE_SIZE must precede the field type=file
176
+            $texte .= '<input type="hidden" name="MAX_FILE_SIZE" value="' . ($maxmin * 1024) . '">'; // MAX_FILE_SIZE must precede the field type=file
177 177
         }
178 178
         $texte .= ' <input type="file" name="uploadfile">';
179 179
         $texte .= '<input type="hidden" value="STOCK_ADDON_PDF_ODT_PATH" name="keyforuploaddir">';
Please login to merge, or discard this patch.
htdocs/core/modules/user/doc/doc_generic_user_odt.modules.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -215,7 +215,7 @@  discard block
 block discarded – undo
215 215
         return $texte;
216 216
     }
217 217
 
218
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
218
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
219 219
     /**
220 220
      *  Function to build a document on disk using the generic odt module.
221 221
      *
@@ -229,7 +229,7 @@  discard block
 block discarded – undo
229 229
      */
230 230
     public function write_file($object, $outputlangs, $srctemplatepath, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
231 231
     {
232
-		// phpcs:enable
232
+        // phpcs:enable
233 233
         global $user, $langs, $conf, $mysoc, $hookmanager;
234 234
 
235 235
         if (empty($srctemplatepath)) {
@@ -438,7 +438,7 @@  discard block
 block discarded – undo
438 438
         return -1;
439 439
     }
440 440
 
441
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
441
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
442 442
     /**
443 443
      * get substitution array for object
444 444
      *
@@ -449,7 +449,7 @@  discard block
 block discarded – undo
449 449
      */
450 450
     public function get_substitutionarray_object($object, $outputlangs, $array_key = 'object')
451 451
     {
452
-		// phpcs:enable
452
+        // phpcs:enable
453 453
         if (!$object instanceof User) {
454 454
             dol_syslog("Expected User object, got " . gettype($object), LOG_ERR);
455 455
             return array();
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -198,7 +198,7 @@
 block discarded – undo
198 198
         $maxfilesizearray = getMaxFileSizeArray();
199 199
         $maxmin = $maxfilesizearray['maxmin'];
200 200
         if ($maxmin > 0) {
201
-            $texte .= '<input type="hidden" name="MAX_FILE_SIZE" value="' . ($maxmin * 1024) . '">';    // MAX_FILE_SIZE must precede the field type=file
201
+            $texte .= '<input type="hidden" name="MAX_FILE_SIZE" value="' . ($maxmin * 1024) . '">'; // MAX_FILE_SIZE must precede the field type=file
202 202
         }
203 203
         $texte .= ' <input type="file" name="uploadfile">';
204 204
         $texte .= '<input type="hidden" value="USER_ADDON_PDF_ODT_PATH" name="keyforuploaddir">';
Please login to merge, or discard this patch.