Passed
Push — develop ( 2af5a4...c3260d )
by Greg
11:35
created
app/Http/Controllers/Admin/LocationController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -294,8 +294,8 @@
 block discarded – undo
294 294
             if ($parent_id === 0) {
295 295
                 // We're at the global level so create a minimal
296 296
                 // place for the page title and breadcrumbs
297
-                $title         =  I18N::translate('World');
298
-                $hierarchy     =  [];
297
+                $title         = I18N::translate('World');
298
+                $hierarchy     = [];
299 299
             } else {
300 300
                 $hierarchy = $this->getHierarchy($parent_id);
301 301
                 $tmp       = new Location($hierarchy[0]->fqpn);
Please login to merge, or discard this patch.
app/Factories/GedcomRecordFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
      *
97 97
      * @return GedcomRecord
98 98
      */
99
-    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): GedcomRecord
99
+    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : GedcomRecord
100 100
     {
101 101
         return new GedcomRecord($xref, $gedcom, $pending, $tree);
102 102
     }
Please login to merge, or discard this patch.
app/Contracts/FamilyFactoryInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,5 +55,5 @@
 block discarded – undo
55 55
      *
56 56
      * @return Family
57 57
      */
58
-    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): Family;
58
+    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : Family;
59 59
 }
Please login to merge, or discard this patch.
app/Contracts/NoteFactoryInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,5 +55,5 @@
 block discarded – undo
55 55
      *
56 56
      * @return Note
57 57
      */
58
-    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): Note;
58
+    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : Note;
59 59
 }
Please login to merge, or discard this patch.
app/Contracts/MediaFactoryInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,5 +55,5 @@
 block discarded – undo
55 55
      *
56 56
      * @return Media
57 57
      */
58
-    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): Media;
58
+    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : Media;
59 59
 }
Please login to merge, or discard this patch.
app/Contracts/RepositoryFactoryInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,5 +55,5 @@
 block discarded – undo
55 55
      *
56 56
      * @return Repository
57 57
      */
58
-    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): Repository;
58
+    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : Repository;
59 59
 }
Please login to merge, or discard this patch.
app/Contracts/SubmitterFactoryInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,5 +55,5 @@
 block discarded – undo
55 55
      *
56 56
      * @return Submitter
57 57
      */
58
-    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): Submitter;
58
+    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : Submitter;
59 59
 }
Please login to merge, or discard this patch.
app/Contracts/IndividualFactoryInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,5 +55,5 @@
 block discarded – undo
55 55
      *
56 56
      * @return Individual
57 57
      */
58
-    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): Individual;
58
+    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : Individual;
59 59
 }
Please login to merge, or discard this patch.
app/Contracts/SourceFactoryInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,5 +55,5 @@
 block discarded – undo
55 55
      *
56 56
      * @return Source
57 57
      */
58
-    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree): Source;
58
+    public function new(string $xref, string $gedcom, ?string $pending, Tree $tree) : Source;
59 59
 }
Please login to merge, or discard this patch.