Passed
Push — develop ( f86b0c...c93b2b )
by Greg
07:39
created
app/Report/ReportParserGenerate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -828,7 +828,7 @@
 block discarded – undo
828 828
         // Until this can be re-designed, we need this assertion to help static analysis tools.
829 829
         assert($this->current_element instanceof ReportBaseElement, new LogicException());
830 830
 
831
-        $this->wt_report       = array_pop($this->wt_report_stack);
831
+        $this->wt_report = array_pop($this->wt_report_stack);
832 832
         $this->wt_report->addElement($this->current_element);
833 833
     }
834 834
 
Please login to merge, or discard this patch.
app/Module/InteractiveTree/TreeView.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
     public function getIndividuals(Tree $tree, string $request): string
79 79
     {
80 80
         $json_requests = explode(';', $request);
81
-        $r    = [];
81
+        $r = [];
82 82
         foreach ($json_requests as $json_request) {
83 83
             $firstLetter = substr($json_request, 0, 1);
84 84
             $json_request = substr($json_request, 1);
Please login to merge, or discard this patch.
app/Http/RequestHandlers/PendingChangesLogPage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
 
74 74
         $users = ['' => ''];
75 75
         foreach ($this->user_service->all() as $user) {
76
-            $user_name             = $user->userName();
76
+            $user_name = $user->userName();
77 77
             $users[$user_name] = $user_name;
78 78
         }
79 79
 
Please login to merge, or discard this patch.
app/Http/RequestHandlers/PendingChangesLogData.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -192,7 +192,7 @@
 block discarded – undo
192 192
                 '<div class="gedcom-data" dir="ltr">' .
193 193
                 preg_replace_callback(
194 194
                     '/@(' . Gedcom::REGEX_XREF . ')@/',
195
-                    static function (array $match) use ($tree): string {
195
+                    static function (array $match) use ($tree) : string {
196 196
                         $record = GedcomRecord::getInstance($match[1], $tree);
197 197
 
198 198
                         return $record ? '<a href="' . e($record->url()) . '">' . $match[0] . '</a>' : $match[0];
Please login to merge, or discard this patch.
app/Http/RequestHandlers/RedirectMediaViewerPhp.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      */
42 42
     public function handle(ServerRequestInterface $request): ResponseInterface
43 43
     {
44
-        $tree   = $request->getQueryParams()['ged'];
44
+        $tree = $request->getQueryParams()['ged'];
45 45
         assert(is_string($tree));
46 46
 
47 47
         $xref  = $request->getQueryParams()['mid'];
Please login to merge, or discard this patch.
app/Source.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 {
33 33
     public const RECORD_TYPE = 'SOUR';
34 34
 
35
-    protected const ROUTE_NAME  = SourcePage::class;
35
+    protected const ROUTE_NAME = SourcePage::class;
36 36
 
37 37
     /**
38 38
      * A closure which will create a record from a database row.
Please login to merge, or discard this patch.
app/Http/RequestHandlers/RepositoryPage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@
 block discarded – undo
82 82
         $repository = Auth::checkRepositoryAccess($repository, false);
83 83
 
84 84
         // Redirect to correct xref/slug
85
-        if ($repository->xref() !== $xref ||  $request->getAttribute('slug') !== $repository->slug()) {
85
+        if ($repository->xref() !== $xref || $request->getAttribute('slug') !== $repository->slug()) {
86 86
             return redirect($repository->url());
87 87
         }
88 88
 
Please login to merge, or discard this patch.
app/Http/Controllers/Admin/ImportThumbnailsController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -174,7 +174,7 @@
 block discarded – undo
174 174
                 // Turn each filename into a row for the table
175 175
                 $original = $this->findOriginalFileFromThumbnail($thumbnail);
176 176
 
177
-                $original_url  = route('unused-media-thumbnail', [
177
+                $original_url = route('unused-media-thumbnail', [
178 178
                     'path' => $original,
179 179
                     'w'    => 100,
180 180
                     'h'    => 100,
Please login to merge, or discard this patch.
app/Module/StoriesModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -312,7 +312,7 @@
 block discarded – undo
312 312
             $title = I18N::translate('Edit the story') . ' — ' . e($tree->title());
313 313
         }
314 314
 
315
-        $individual  = Individual::getInstance($xref, $tree);
315
+        $individual = Individual::getInstance($xref, $tree);
316 316
 
317 317
         return $this->viewResponse('modules/stories/edit', [
318 318
             'block_id'    => $block_id,
Please login to merge, or discard this patch.