Passed
Push — 2.1 ( 4c5fd4...38ac26 )
by Greg
32:01 queued 20:44
created
app/Date/AbstractCalendarDate.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
             $this->month = static::MONTH_TO_NUMBER[$date[1]] ?? 0;
100 100
 
101 101
             if ($this->month === 0) {
102
-                $this->day   = 0;
102
+                $this->day = 0;
103 103
             }
104 104
 
105 105
             $this->year = $this->extractYear($date[0]);
Please login to merge, or discard this patch.
app/Encodings/UTF8.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
     public static function chr(int $code): string
829 829
     {
830 830
         if ($code < 0 || $code > 0x1FFFFF) {
831
-            throw new InvalidArgumentException((string)$code);
831
+            throw new InvalidArgumentException((string) $code);
832 832
         }
833 833
 
834 834
         if ($code <= 0x7F) {
Please login to merge, or discard this patch.
app/Http/RequestHandlers/DataFixUpdateAll.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
         /** @var Collection<int,GedcomRecord> $records */
94 94
         $records = $rows->map(function (object $row) use ($tree): ?GedcomRecord {
95 95
             return $this->data_fix_service->getRecordByType($row->xref, $tree, $row->type);
96
-        })->filter(static function (?GedcomRecord $record) use ($module, $params): bool {
96
+        })->filter(static function (?GedcomRecord $record) use ($module, $params) : bool {
97 97
             return $record instanceof GedcomRecord && !$record->isPendingDeletion() && $module->doesRecordNeedUpdate($record, $params);
98 98
         });
99 99
 
Please login to merge, or discard this patch.
app/Report/ReportParserSetup.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
             } else {
127 127
                 $match = [];
128 128
                 if (preg_match('/NOW([+\-]\d+)/', $attrs['default'], $match) > 0) {
129
-                    $date = Registry::timestampFactory()->now()->addDays((int)$match[1]);
129
+                    $date = Registry::timestampFactory()->now()->addDays((int) $match[1]);
130 130
                     $this->input['default'] = strtoupper($date->format('d M Y'));
131 131
                 } else {
132 132
                     $this->input['default'] = $attrs['default'];
Please login to merge, or discard this patch.
app/Http/Middleware/HandleExceptions.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
     {
155 155
         $tree    = Validator::attributes($request)->treeOptional();
156 156
         $default = Site::getPreference('DEFAULT_GEDCOM');
157
-        $tree    ??= $this->tree_service->all()[$default] ?? $this->tree_service->all()->first();
157
+        $tree ??= $this->tree_service->all()[$default] ?? $this->tree_service->all()->first();
158 158
 
159 159
         $status_code = $exception->getCode();
160 160
 
Please login to merge, or discard this patch.
app/Module/UpcomingAnniversariesModule.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -146,8 +146,8 @@  discard block
 block discarded – undo
146 146
     {
147 147
         $default_events = implode(',', self::DEFAULT_EVENTS);
148 148
 
149
-        $days      = (int)$this->getBlockSetting($block_id, 'days', self::DEFAULT_DAYS);
150
-        $filter    = (bool)$this->getBlockSetting($block_id, 'filter', self::DEFAULT_FILTER);
149
+        $days      = (int) $this->getBlockSetting($block_id, 'days', self::DEFAULT_DAYS);
150
+        $filter    = (bool) $this->getBlockSetting($block_id, 'filter', self::DEFAULT_FILTER);
151 151
         $infoStyle = $this->getBlockSetting($block_id, 'infoStyle', self::DEFAULT_STYLE);
152 152
         $sortStyle = $this->getBlockSetting($block_id, 'sortStyle', self::DEFAULT_SORT);
153 153
         $events    = $this->getBlockSetting($block_id, 'events', $default_events);
@@ -256,8 +256,8 @@  discard block
 block discarded – undo
256 256
         $sort_style = Validator::parsedBody($request)->isInArrayKeys($this->sortStyles())->string('sortStyle');
257 257
         $events     = Validator::parsedBody($request)->array('events');
258 258
 
259
-        $this->setBlockSetting($block_id, 'days', (string)$days);
260
-        $this->setBlockSetting($block_id, 'filter', (string)$filter);
259
+        $this->setBlockSetting($block_id, 'days', (string) $days);
260
+        $this->setBlockSetting($block_id, 'filter', (string) $filter);
261 261
         $this->setBlockSetting($block_id, 'infoStyle', $info_style);
262 262
         $this->setBlockSetting($block_id, 'sortStyle', $sort_style);
263 263
         $this->setBlockSetting($block_id, 'events', implode(',', $events));
Please login to merge, or discard this patch.
app/Module/FanChartModule.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -228,7 +228,7 @@
 block discarded – undo
228 228
                 'style'       => Validator::parsedBody($request)->isInArrayKeys($this->styles())->integer('style'),
229 229
                 'width'       => Validator::parsedBody($request)->isBetween(self::MINIMUM_WIDTH, self::MAXIMUM_WIDTH)->integer('width'),
230 230
                 'xref'        => Validator::parsedBody($request)->isXref()->string('xref'),
231
-             ]));
231
+                ]));
232 232
         }
233 233
 
234 234
         Auth::checkComponentAccess($this, ModuleChartInterface::class, $tree, $user);
Please login to merge, or discard this patch.
app/Module/LanguageFrench.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -144,8 +144,7 @@
 block discarded – undo
144 144
                 }
145 145
                 return $genitive(
146 146
                     $sex === 'F' ?
147
-                        'cousine du ' . $down . '<sup>e</sup> au ' . $up . '<sup>e</sup> degré' :
148
-                        'cousin du ' . $down . '<sup>e</sup> au ' . $up . '<sup>e</sup> degré',
147
+                        'cousine du ' . $down . '<sup>e</sup> au ' . $up . '<sup>e</sup> degré' : 'cousin du ' . $down . '<sup>e</sup> au ' . $up . '<sup>e</sup> degré',
149 148
                     $sex === 'F' ? 'de la ' : 'du '
150 149
                 );
151 150
             };
Please login to merge, or discard this patch.
app/Services/GedcomEditService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
                 }
155 155
             }
156 156
 
157
-            if ($values[$i] !== '' || $children_with_values  && !$element instanceof AbstractXrefElement) {
157
+            if ($values[$i] !== '' || $children_with_values && !$element instanceof AbstractXrefElement) {
158 158
                 if ($values[$i] === '') {
159 159
                     $gedcom_lines[] = $levels[$i] . ' ' . $tags[$i];
160 160
                 } else {
Please login to merge, or discard this patch.