summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2021-06-27 16:11:22 +0100
committerGreg Roach <greg@subaqua.co.uk>2021-06-27 16:11:22 +0100
commitc84144a8464d71125e3ca02d47864c7e10dfd7e0 (patch)
tree4ae9b15e5468a48b3c8222b94d92647a1c9af37e /app
parentf7f3cc7383df87be965d651746709ec428271e38 (diff)
downloadwebtrees-c84144a8464d71125e3ca02d47864c7e10dfd7e0.tar.gz
webtrees-c84144a8464d71125e3ca02d47864c7e10dfd7e0.tar.bz2
webtrees-c84144a8464d71125e3ca02d47864c7e10dfd7e0.zip
CodeStyle
Diffstat (limited to 'app')
-rw-r--r--app/GedcomRecord.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/GedcomRecord.php b/app/GedcomRecord.php
index d8671c64de..5150e12d99 100644
--- a/app/GedcomRecord.php
+++ b/app/GedcomRecord.php
@@ -784,7 +784,7 @@ class GedcomRecord
$access_level = $access_level ?? Auth::accessLevel($this->tree);
// Convert BIRT into INDI:BIRT, etc.
- $filter = array_map(fn(string $tag): string => $this->tag() . ':' . $tag, $filter);
+ $filter = array_map(fn (string $tag): string => $this->tag() . ':' . $tag, $filter);
$facts = new Collection();
if ($this->canShow($access_level)) {