Passed
Push — dbal ( ab3180...545eb7 )
by Greg
19:11 queued 12:15
created
app/Media.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
     /**
76 76
      * Get the first media file that contains an image.
77 77
      */
78
-    public function firstImageFile(): MediaFile|null
78
+    public function firstImageFile(): MediaFile | null
79 79
     {
80 80
         return $this->mediaFiles()
81 81
             ->first(static fn (MediaFile $media_file): bool => $media_file->isImage() && !$media_file->isExternal());
Please login to merge, or discard this patch.
app/Census/AbstractCensusColumn.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@
 block discarded – undo
97 97
     {
98 98
         return $individual->spouseFamilies()
99 99
                 // Exclude families that were created after this census date
100
-            ->filter(fn (Family $family): bool => Date::compare($family->getMarriageDate(), $this->date()) <= 0)
100
+            ->filter(fn (Family $family) : bool => Date::compare($family->getMarriageDate(), $this->date()) <= 0)
101 101
             ->sort(Family::marriageDateComparator())
102 102
             ->last();
103 103
     }
Please login to merge, or discard this patch.