Passed
Push — analysis-XaRQpW ( 9c3a5b )
by Greg
08:33
created
app/Http/RequestHandlers/RedirectSourcePhp.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
      */
39 39
     public function handle(ServerRequestInterface $request): ResponseInterface
40 40
     {
41
-        $tree   = $request->getQueryParams()['ged'] ?? '';
41
+        $tree = $request->getQueryParams()['ged'] ?? '';
42 42
         $xref  = $request->getQueryParams()['sid'] ?? '';
43 43
         $route = route('source', ['tree' => $tree, 'xref' => $xref]);
44 44
 
Please login to merge, or discard this patch.
app/Http/Controllers/MediaFileController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@
 block discarded – undo
188 188
             $params['tree'] = $media_file->media()->tree()->name();
189 189
             $this->glideSignature()->validateRequest('', $params);
190 190
 
191
-            $path = $media_file->media()->tree()->getPreference('MEDIA_DIRECTORY', 'media/') .  $media_file->filename();
191
+            $path = $media_file->media()->tree()->getPreference('MEDIA_DIRECTORY', 'media/') . $media_file->filename();
192 192
             $folder = dirname($path);
193 193
 
194 194
             $cache_path           = 'thumbnail-cache/' . md5($folder);
Please login to merge, or discard this patch.
app/Http/Middleware/Router.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
             $url_route = $params['route'] ?? '/';
72 72
             $uri       = $uri->withPath($url_route);
73 73
             unset($params['route']);
74
-            $uri     = $uri->withQuery(http_build_query($params, '', '&', PHP_QUERY_RFC3986));
74
+            $uri = $uri->withQuery(http_build_query($params, '', '&', PHP_QUERY_RFC3986));
75 75
             $temp_request = $request->withUri($uri)->withQueryParams($params);
76 76
         } else {
77 77
             $temp_request = $request;
Please login to merge, or discard this patch.
app/Services/TreeService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -124,7 +124,7 @@
 block discarded – undo
124 124
      */
125 125
     public function findByName($name): ?Tree
126 126
     {
127
-        return $this->all()->first(static function (Tree $tree) use ($name): bool {
127
+        return $this->all()->first(static function (Tree $tree) use ($name) : bool {
128 128
             return $tree->name() === $name;
129 129
         });
130 130
     }
Please login to merge, or discard this patch.
app/Http/Controllers/AdminTreesController.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -370,10 +370,10 @@
 block discarded – undo
370 370
     }
371 371
 
372 372
     /**
373
-      * @param ServerRequestInterface $request
374
-      *
375
-      * @return ResponseInterface
376
-      */
373
+     * @param ServerRequestInterface $request
374
+     *
375
+     * @return ResponseInterface
376
+     */
377 377
     public function duplicates(ServerRequestInterface $request): ResponseInterface
378 378
     {
379 379
         $tree       = $request->getAttribute('tree');
Please login to merge, or discard this patch.