summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/Services/GedcomExportService.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Services/GedcomExportService.php b/app/Services/GedcomExportService.php
index 4875fad814..e20773a59a 100644
--- a/app/Services/GedcomExportService.php
+++ b/app/Services/GedcomExportService.php
@@ -107,7 +107,7 @@ class GedcomExportService
string $line_endings,
string $filename,
string $format,
- Collection $records = null
+ Collection|null $records = null
): ResponseInterface {
$access_level = self::ACCESS_LEVELS[$privacy];
@@ -178,7 +178,7 @@ class GedcomExportService
string $line_endings = 'CRLF',
Collection|null $records = null,
FilesystemOperator|null $zip_filesystem = null,
- string $media_path = null
+ string|null $media_path = null
) {
$stream = fopen('php://memory', 'wb+');