Passed
Push — main ( d8f8f2...7eb3b3 )
by Rafael
47:22
created
htdocs/core/modules/import/import_csv.modules.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
     }
116 116
 
117 117
 
118
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
118
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
119 119
     /**
120 120
      *  Output header of an example file for this format
121 121
      *
@@ -124,11 +124,11 @@  discard block
 block discarded – undo
124 124
      */
125 125
     public function write_header_example($outputlangs)
126 126
     {
127
-		// phpcs:enable
127
+        // phpcs:enable
128 128
         return '';
129 129
     }
130 130
 
131
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
131
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
132 132
     /**
133 133
      *  Output title line of an example file for this format
134 134
      *
@@ -138,12 +138,12 @@  discard block
 block discarded – undo
138 138
      */
139 139
     public function write_title_example($outputlangs, $headerlinefields)
140 140
     {
141
-		// phpcs:enable
141
+        // phpcs:enable
142 142
         $s = implode($this->separator, array_map('cleansep', $headerlinefields));
143 143
         return $s . "\n";
144 144
     }
145 145
 
146
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
146
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
147 147
     /**
148 148
      *  Output record of an example file for this format
149 149
      *
@@ -153,12 +153,12 @@  discard block
 block discarded – undo
153 153
      */
154 154
     public function write_record_example($outputlangs, $contentlinevalues)
155 155
     {
156
-		// phpcs:enable
156
+        // phpcs:enable
157 157
         $s = implode($this->separator, array_map('cleansep', $contentlinevalues));
158 158
         return $s . "\n";
159 159
     }
160 160
 
161
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
161
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
162 162
     /**
163 163
      *  Output footer of an example file for this format
164 164
      *
@@ -167,12 +167,12 @@  discard block
 block discarded – undo
167 167
      */
168 168
     public function write_footer_example($outputlangs)
169 169
     {
170
-		// phpcs:enable
170
+        // phpcs:enable
171 171
         return '';
172 172
     }
173 173
 
174 174
 
175
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
175
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
176 176
     /**
177 177
      *  Open input file
178 178
      *
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
      */
182 182
     public function import_open_file($file)
183 183
     {
184
-		// phpcs:enable
184
+        // phpcs:enable
185 185
         global $langs;
186 186
         $ret = 1;
187 187
 
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
     }
203 203
 
204 204
 
205
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
205
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
206 206
     /**
207 207
      *  Return nb of records. File must be closed.
208 208
      *
@@ -211,12 +211,12 @@  discard block
 block discarded – undo
211 211
      */
212 212
     public function import_get_nb_of_lines($file)
213 213
     {
214
-		// phpcs:enable
214
+        // phpcs:enable
215 215
         return dol_count_nb_of_line($file);
216 216
     }
217 217
 
218 218
 
219
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
219
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
220 220
     /**
221 221
      *  Input header line from file
222 222
      *
@@ -224,12 +224,12 @@  discard block
 block discarded – undo
224 224
      */
225 225
     public function import_read_header()
226 226
     {
227
-		// phpcs:enable
227
+        // phpcs:enable
228 228
         return 0;
229 229
     }
230 230
 
231 231
 
232
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
232
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
233 233
     /**
234 234
      *  Return array of next record in input file.
235 235
      *
@@ -237,7 +237,7 @@  discard block
 block discarded – undo
237 237
      */
238 238
     public function import_read_record()
239 239
     {
240
-		// phpcs:enable
240
+        // phpcs:enable
241 241
         global $conf;
242 242
 
243 243
         $arrayres = fgetcsv($this->handle, 100000, $this->separator, $this->enclosure, $this->escape);
@@ -277,7 +277,7 @@  discard block
 block discarded – undo
277 277
         return $newarrayres;
278 278
     }
279 279
 
280
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
280
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
281 281
     /**
282 282
      *  Close file handle
283 283
      *
@@ -285,13 +285,13 @@  discard block
 block discarded – undo
285 285
      */
286 286
     public function import_close_file()
287 287
     {
288
-		// phpcs:enable
288
+        // phpcs:enable
289 289
         fclose($this->handle);
290 290
         return 0;
291 291
     }
292 292
 
293 293
 
294
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
294
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
295 295
     /**
296 296
      * Insert a record into database
297 297
      *
@@ -305,7 +305,7 @@  discard block
 block discarded – undo
305 305
      */
306 306
     public function import_insert($arrayrecord, $array_match_file_to_database, $objimport, $maxfields, $importid, $updatekeys)
307 307
     {
308
-		// phpcs:enable
308
+        // phpcs:enable
309 309
         global $langs, $conf, $user;
310 310
         global $thirdparty_static; // Specific to thirdparty import
311 311
         global $tablewithentity_cache; // Cache to avoid to call  desc at each rows on tables
Please login to merge, or discard this patch.
htdocs/core/modules/bank/modules_bank.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
  */
34 34
 abstract class ModeleBankAccountDoc extends CommonDocGenerator
35 35
 {
36
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
36
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
37 37
     /**
38 38
      *  Return list of active generation modules
39 39
      *
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      */
44 44
     public static function liste_modeles($db, $maxfilenamelength = 0)
45 45
     {
46
-		// phpcs:enable
46
+        // phpcs:enable
47 47
         $type = 'bankaccount';
48 48
         $list = array();
49 49
 
Please login to merge, or discard this patch.
htdocs/core/modules/bank/doc/pdf_sepamandate.modules.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
         $this->heightforfooter = $this->marge_basse + 8;
113 113
     }
114 114
 
115
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
115
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
116 116
     /**
117 117
      *  Function to create pdf of company bank account sepa mandate
118 118
      *
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
      */
128 128
     public function write_file($object, $outputlangs, $srctemplatepath = '', $hidedetails = 0, $hidedesc = 0, $hideref = 0, $moreparams = null)
129 129
     {
130
-		// phpcs:enable
130
+        // phpcs:enable
131 131
         global $conf, $hookmanager, $langs, $user, $mysoc;
132 132
 
133 133
         if (!is_object($outputlangs)) {
@@ -469,7 +469,7 @@  discard block
 block discarded – undo
469 469
     }
470 470
 
471 471
 
472
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
472
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
473 473
     /**
474 474
      *   Show table for lines
475 475
      *
@@ -484,15 +484,15 @@  discard block
 block discarded – undo
484 484
      */
485 485
     protected function _tableau(&$pdf, $tab_top, $tab_height, $nexY, $outputlangs, $hidetop = 0, $hidebottom = 0)
486 486
     {
487
-		// phpcs:enable
487
+        // phpcs:enable
488 488
         global $conf, $mysoc;
489 489
 
490 490
         $default_font_size = pdf_getPDFFontSize($outputlangs);
491 491
     }
492 492
 
493 493
 
494
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
495
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
494
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
495
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
496 496
     /**
497 497
      *   Show miscellaneous information (payment mode, payment term, ...)
498 498
      *
@@ -504,7 +504,7 @@  discard block
 block discarded – undo
504 504
      */
505 505
     protected function _tableau_info(&$pdf, $object, $posy, $outputlangs)
506 506
     {
507
-		// phpcs:enable
507
+        // phpcs:enable
508 508
         global $conf, $mysoc;
509 509
 
510 510
         $default_font_size = pdf_getPDFFontSize($outputlangs);
@@ -528,8 +528,8 @@  discard block
 block discarded – undo
528 528
     }
529 529
 
530 530
 
531
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
532
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
531
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
532
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
533 533
     /**
534 534
      *  Show area for the customer to sign
535 535
      *
@@ -541,7 +541,7 @@  discard block
 block discarded – undo
541 541
      */
542 542
     protected function _signature_area(&$pdf, $object, $posy, $outputlangs)
543 543
     {
544
-		// phpcs:enable
544
+        // phpcs:enable
545 545
         $default_font_size = pdf_getPDFFontSize($outputlangs);
546 546
         $tab_top = $posy + 4;
547 547
         $tab_hl = 4;
@@ -570,7 +570,7 @@  discard block
 block discarded – undo
570 570
     }
571 571
 
572 572
 
573
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
573
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
574 574
     /**
575 575
      *  Show top header of page.
576 576
      *
@@ -582,7 +582,7 @@  discard block
 block discarded – undo
582 582
      */
583 583
     protected function _pagehead(&$pdf, $object, $showaddress, $outputlangs)
584 584
     {
585
-		// phpcs:enable
585
+        // phpcs:enable
586 586
         global $langs, $conf, $mysoc;
587 587
 
588 588
         $default_font_size = pdf_getPDFFontSize($outputlangs);
@@ -663,7 +663,7 @@  discard block
 block discarded – undo
663 663
         return 0;
664 664
     }
665 665
 
666
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
666
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
667 667
     /**
668 668
      *  Show footer of page. Need this->emetteur object
669 669
      *
@@ -675,7 +675,7 @@  discard block
 block discarded – undo
675 675
      */
676 676
     protected function _pagefoot(&$pdf, $object, $outputlangs, $hidefreetext = 0)
677 677
     {
678
-		// phpcs:enable
678
+        // phpcs:enable
679 679
         $showdetails = getDolGlobalInt('MAIN_GENERATE_DOCUMENTS_SHOW_FOOT_DETAILS', 0);
680 680
         return pdf_pagefoot($pdf, $outputlangs, 'PAYMENTORDER_FREE_TEXT', null, $this->marge_basse, $this->marge_gauche, $this->page_hauteur, $object, $showdetails, $hidefreetext);
681 681
     }
Please login to merge, or discard this patch.
htdocs/core/modules/bank/doc/pdf_ban.modules.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
     }
98 98
 
99 99
 
100
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
100
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
101 101
     /**
102 102
      *  Fonction generant le projet sur le disque
103 103
      *
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
      */
108 108
     public function write_file($object, $outputlangs)
109 109
     {
110
-		// phpcs:enable
110
+        // phpcs:enable
111 111
         global $conf, $hookmanager, $langs, $user;
112 112
 
113 113
         if (!is_object($outputlangs)) {
@@ -274,7 +274,7 @@  discard block
 block discarded – undo
274 274
     }
275 275
 
276 276
 
277
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
277
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
278 278
     /**
279 279
      *   Show table for lines
280 280
      *
@@ -289,13 +289,13 @@  discard block
 block discarded – undo
289 289
      */
290 290
     protected function _tableau(&$pdf, $tab_top, $tab_height, $nexY, $outputlangs, $hidetop = 0, $hidebottom = 0)
291 291
     {
292
-		// phpcs:enable
292
+        // phpcs:enable
293 293
         global $conf, $mysoc;
294 294
 
295 295
         $default_font_size = pdf_getPDFFontSize($outputlangs);
296 296
     }
297 297
 
298
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
298
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
299 299
     /**
300 300
      *  Show top header of page.
301 301
      *
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
     protected function _pagehead(&$pdf, $object, $showaddress, $outputlangs)
309 309
     {
310 310
         global $langs, $conf, $mysoc;
311
-		// phpcs:enable
311
+        // phpcs:enable
312 312
 
313 313
         $default_font_size = pdf_getPDFFontSize($outputlangs);
314 314
 
@@ -382,7 +382,7 @@  discard block
 block discarded – undo
382 382
         return 0;
383 383
     }
384 384
 
385
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
385
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
386 386
     /**
387 387
      *      Show footer of page. Need this->emetteur object
388 388
      *
@@ -394,7 +394,7 @@  discard block
 block discarded – undo
394 394
      */
395 395
     protected function _pagefoot(&$pdf, $object, $outputlangs, $hidefreetext = 0)
396 396
     {
397
-		// phpcs:enable
397
+        // phpcs:enable
398 398
         global $conf;
399 399
 
400 400
         $showdetails = !getDolGlobalString('MAIN_GENERATE_DOCUMENTS_SHOW_FOOT_DETAILS') ? 0 : $conf->global->MAIN_GENERATE_DOCUMENTS_SHOW_FOOT_DETAILS;
Please login to merge, or discard this patch.
htdocs/core/modules/payment/mod_payment_ant.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
     }
144 144
 
145 145
 
146
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
146
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
147 147
     /**
148 148
      *  Return next free value
149 149
      *
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
      */
154 154
     public function commande_get_num($objsoc, $objforref)
155 155
     {
156
-		// phpcs:enable
156
+        // phpcs:enable
157 157
         return $this->getNextValue($objsoc, $objforref);
158 158
     }
159 159
 }
Please login to merge, or discard this patch.
htdocs/core/modules/payment/mod_payment_cicada.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
     }
165 165
 
166 166
 
167
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
167
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
168 168
     /**
169 169
      *  Return next free value
170 170
      *
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
      */
175 175
     public function payment_get_num($objsoc, $objforref)
176 176
     {
177
-		// phpcs:enable
177
+        // phpcs:enable
178 178
         return $this->getNextValue($objsoc, $objforref);
179 179
     }
180 180
 }
Please login to merge, or discard this patch.
htdocs/core/modules/supplier_payment/modules_supplier_payment.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
  */
27 27
 abstract class ModelePDFSuppliersPayments extends CommonDocGenerator
28 28
 {
29
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
29
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
30 30
     /**
31 31
      *  Return list of active generation models
32 32
      *
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
      */
37 37
     public static function liste_modeles($db, $maxfilenamelength = 0)
38 38
     {
39
-		// phpcs:enable
39
+        // phpcs:enable
40 40
         $type = 'supplier_payment';
41 41
         $list = array();
42 42
 
Please login to merge, or discard this patch.
htdocs/core/modules/supplier_payment/doc/pdf_standard.modules.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
     }
145 145
 
146 146
 
147
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
147
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
148 148
     /**
149 149
      *  Function to build pdf onto disk
150 150
      *
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
      */
159 159
     public function write_file($object, $outputlangs = null, $srctemplatepath = '', $hidedetails = 0, $hidedesc = 0, $hideref = 0)
160 160
     {
161
-		// phpcs:enable
161
+        // phpcs:enable
162 162
         global $user, $langs, $conf, $mysoc, $hookmanager;
163 163
 
164 164
         if (!is_object($outputlangs)) {
@@ -481,8 +481,8 @@  discard block
 block discarded – undo
481 481
         }
482 482
     }
483 483
 
484
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
485
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
484
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
485
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
486 486
     /**
487 487
      *  Show total to pay
488 488
      *
@@ -494,7 +494,7 @@  discard block
 block discarded – undo
494 494
      */
495 495
     protected function _tableau_cheque(&$pdf, $object, $posy, $outputlangs)
496 496
     {
497
-		// phpcs:enable
497
+        // phpcs:enable
498 498
         global $conf, $mysoc;
499 499
 
500 500
         $default_font_size = pdf_getPDFFontSize($outputlangs);
@@ -544,7 +544,7 @@  discard block
 block discarded – undo
544 544
         return $posy;
545 545
     }
546 546
 
547
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
547
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
548 548
     /**
549 549
      *   Show table for lines
550 550
      *
@@ -591,7 +591,7 @@  discard block
 block discarded – undo
591 591
         //$this->printRect($pdf,$this->marge_gauche, $tab_top, $this->page_largeur-$this->marge_gauche-$this->marge_droite, $tab_height, $hidetop, $hidebottom);    // Rect takes a length in 3rd parameter and 4th parameter
592 592
     }
593 593
 
594
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
594
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
595 595
     /**
596 596
      *  Show top header of page.
597 597
      *
@@ -807,7 +807,7 @@  discard block
 block discarded – undo
807 807
         return 0;
808 808
     }
809 809
 
810
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
810
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
811 811
     /**
812 812
      *      Show footer of page. Need this->emetteur object
813 813
      *
Please login to merge, or discard this patch.
htdocs/core/modules/fichinter/modules_fichinter.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
  */
38 38
 abstract class ModelePDFFicheinter extends CommonDocGenerator
39 39
 {
40
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
40
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
41 41
     /**
42 42
      *  Return list of active generation modules
43 43
      *
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      */
48 48
     public static function liste_modeles($db, $maxfilenamelength = 0)
49 49
     {
50
-		// phpcs:enable
50
+        // phpcs:enable
51 51
         $type = 'ficheinter';
52 52
         $list = array();
53 53
 
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
  */
84 84
 function fichinter_create($db, $object, $modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
85 85
 {
86
-	// phpcs:enable
86
+    // phpcs:enable
87 87
     global $conf, $langs;
88 88
     $langs->load("ficheinter");
89 89
 
Please login to merge, or discard this patch.