Passed
Push — develop ( d4d47e...78668e )
by Greg
07:24
created
app/Http/RequestHandlers/ExportGedcomClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@
 block discarded – undo
159 159
             $stream_factory = app(StreamFactoryInterface::class);
160 160
             assert($stream_factory instanceof StreamFactoryInterface);
161 161
 
162
-            $http_stream   = $stream_factory->createStreamFromFile($temp_zip_file);
162
+            $http_stream = $stream_factory->createStreamFromFile($temp_zip_file);
163 163
             $filename = addcslashes($download_filename, '"') . '.zip';
164 164
 
165 165
             /** @var ResponseFactoryInterface $response_factory */
Please login to merge, or discard this patch.
app/Module/ClippingsCartModule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -321,7 +321,7 @@
 block discarded – undo
321 321
 
322 322
         // Create a source, to indicate the source of the data.
323 323
         $record = "0 @WEBTREES@ SOUR\n1 TITL " . $base_url;
324
-        $author   = $this->user_service->find((int) $tree->getPreference('CONTACT_USER_ID'));
324
+        $author = $this->user_service->find((int) $tree->getPreference('CONTACT_USER_ID'));
325 325
         if ($author !== null) {
326 326
             $record .= "\n1 AUTH " . $author->realName();
327 327
         }
Please login to merge, or discard this patch.
app/Statistics/Repository/FamilyDatesRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
             ->select(['d_gid as id', 'd_year as year', 'd_fact AS fact', 'd_type AS type'])
80 80
             ->where('d_file', '=', $this->tree->id())
81 81
             ->where('d_fact', '=', $fact)
82
-            ->where('d_julianday1', '=', function (Builder $query) use ($operation, $fact): void {
82
+            ->where('d_julianday1', '=', function (Builder $query) use ($operation, $fact) : void {
83 83
                 $query->selectRaw($operation . '(d_julianday1)')
84 84
                     ->from('dates')
85 85
                     ->where('d_file', '=', $this->tree->id())
Please login to merge, or discard this patch.
app/Services/ModuleService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -694,7 +694,7 @@  discard block
 block discarded – undo
694 694
         } catch (Throwable $exception) {
695 695
             $module_name = basename(dirname($filename));
696 696
             $message     = 'Fatal error in module: ' . $module_name;
697
-            $message     .= '<br>' . $exception;
697
+            $message .= '<br>' . $exception;
698 698
             FlashMessages::addMessage($message, 'danger');
699 699
         }
700 700
         return null;
@@ -805,7 +805,7 @@  discard block
 block discarded – undo
805 805
     public function findByName(string $module_name, bool $include_disabled = false): ?ModuleInterface
806 806
     {
807 807
         return $this->all($include_disabled)
808
-            ->first(static function (ModuleInterface $module) use ($module_name): bool {
808
+            ->first(static function (ModuleInterface $module) use ($module_name) : bool {
809 809
                 return $module->name() === $module_name;
810 810
             });
811 811
     }
Please login to merge, or discard this patch.