Passed
Pull Request — master (#2881)
by
unknown
04:46
created
app/Module/TimelineChartModule.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         '_TODO',
68 68
         'CHAN',
69 69
     ];
70
-    protected const BHEIGHT   = 30;
70
+    protected const BHEIGHT = 30;
71 71
 
72 72
     // Box height
73 73
 
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
 
153 153
         $params = (array) $request->getParsedBody();
154 154
 
155
-        $add  = $params['add'] ?? '';
155
+        $add = $params['add'] ?? '';
156 156
 
157 157
         Auth::checkComponentAccess($this, 'chart', $tree, $user);
158 158
 
Please login to merge, or discard this patch.
app/Http/RequestHandlers/UnconnectedPage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,9 +71,9 @@
 block discarded – undo
71 71
             ->leftJoin('link', function ($join) {
72 72
                 $join
73 73
                     ->on('i_file', '=', 'l_file')
74
-                    ->on(function($condition) {
74
+                    ->on(function ($condition) {
75 75
                         $condition
76
-                            ->on  ('i_id', '=', 'l_from')
76
+                            ->on('i_id', '=', 'l_from')
77 77
                             ->orOn('i_id', '=', 'l_to');
78 78
                     });
79 79
             })
Please login to merge, or discard this patch.