Passed
Push — MODEL_LIB_240928 ( d6fbb6...55f3e4 )
by Rafael
49:14
created
Dolibarr/Tools/DebugBarCollector/PhpCollector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     {
65 65
         $messages = self::$messages;
66 66
 
67
-        usort($messages, function ($itemA, $itemB) {
67
+        usort($messages, function($itemA, $itemB) {
68 68
             if ($itemA['time'] === $itemB['time']) {
69 69
                 return 0;
70 70
             }
Please login to merge, or discard this patch.
Dolibarr/Tools/Debug.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -96,10 +96,10 @@
 block discarded – undo
96 96
             $baseUrl = constant('DOL_URL_ROOT') . '/templates/src/DebugBar/Resources';
97 97
         }
98 98
         $renderer = parent::getJavascriptRenderer($baseUrl, $basePath);
99
-        $renderer->disableVendor('jquery');         // We already have jquery loaded globally by the main.inc.php
100
-        $renderer->disableVendor('fontawesome');    // We already have fontawesome loaded globally by the main.inc.php
101
-        $renderer->disableVendor('highlightjs');    // We don't need this
102
-        $renderer->setEnableJqueryNoConflict(false);    // We don't need no conflict
99
+        $renderer->disableVendor('jquery'); // We already have jquery loaded globally by the main.inc.php
100
+        $renderer->disableVendor('fontawesome'); // We already have fontawesome loaded globally by the main.inc.php
101
+        $renderer->disableVendor('highlightjs'); // We don't need this
102
+        $renderer->setEnableJqueryNoConflict(false); // We don't need no conflict
103 103
 
104 104
         return $renderer;
105 105
     }
Please login to merge, or discard this patch.