Passed
Push — main ( 55273f...7ed502 )
by Rafael
46:12
created
htdocs/core/modules/mailings/eventorganization.modules.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
     }
57 57
 
58 58
 
59
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
59
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
60 60
     /**
61 61
      *    This is the main function that returns the array of emails
62 62
      *
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
      */
66 66
     public function add_to_target($mailing_id)
67 67
     {
68
-		// phpcs:enable
68
+        // phpcs:enable
69 69
         global $conf, $langs;
70 70
 
71 71
         $cibles = array();
Please login to merge, or discard this patch.
htdocs/core/modules/mailings/fraise.modules.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
     }
225 225
 
226 226
 
227
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
227
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
228 228
     /**
229 229
      *  Ajoute destinataires dans table des cibles
230 230
      *
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
      */
234 234
     public function add_to_target($mailing_id)
235 235
     {
236
-		// phpcs:enable
236
+        // phpcs:enable
237 237
         global $conf, $langs, $_POST;
238 238
 
239 239
         // Load translation files required by the page
Please login to merge, or discard this patch.
htdocs/core/modules/mailings/contacts1.modules.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
     }
330 330
 
331 331
 
332
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
332
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
333 333
     /**
334 334
      *  Add some recipients into target table
335 335
      *
@@ -338,7 +338,7 @@  discard block
 block discarded – undo
338 338
      */
339 339
     public function add_to_target($mailing_id)
340 340
     {
341
-		// phpcs:enable
341
+        // phpcs:enable
342 342
         global $conf, $langs;
343 343
 
344 344
         $filter = GETPOST('filter', 'alpha');
Please login to merge, or discard this patch.
htdocs/core/modules/mailings/pomme.modules.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
     }
151 151
 
152 152
 
153
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
153
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
154 154
     /**
155 155
      *  Ajoute destinataires dans table des cibles
156 156
      *
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
      */
160 160
     public function add_to_target($mailing_id)
161 161
     {
162
-		// phpcs:enable
162
+        // phpcs:enable
163 163
         global $conf, $langs;
164 164
         $langs->load("companies");
165 165
 
Please login to merge, or discard this patch.
htdocs/core/modules/mailings/advthirdparties.modules.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     }
53 53
 
54 54
 
55
-	// phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
55
+    // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
56 56
     /**
57 57
      *    This is the main function that returns the array of emails
58 58
      *
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
      */
65 65
     public function add_to_target_spec($mailing_id, $socid, $type_of_target, $contactid)
66 66
     {
67
-		// phpcs:enable
67
+        // phpcs:enable
68 68
         global $conf, $langs;
69 69
 
70 70
         dol_syslog(get_class($this) . "::add_to_target_spec socid=" . var_export($socid, true) . ' contactid=' . var_export($contactid, true));
Please login to merge, or discard this patch.
htdocs/core/modules/mailings/modules_mailings.php 1 patch
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.
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 1 patch
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.
htdocs/core/modules/commande/doc/pdf_eratosthene.modules.php 1 patch
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.