summaryrefslogtreecommitdiff
path: root/app/GedcomTag.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2019-04-25 21:39:41 +0100
committerGreg Roach <fisharebest@webtrees.net>2019-04-25 21:39:41 +0100
commit22d65e5ad7724941da33d875027b68b86648a321 (patch)
treed41450ddb10def1cda3cdfbe9017c19cd4c2a5c9 /app/GedcomTag.php
parent34395be71f38eb79be305b393ff880ee8bf111d8 (diff)
downloadwebtrees-22d65e5ad7724941da33d875027b68b86648a321.tar.gz
webtrees-22d65e5ad7724941da33d875027b68b86648a321.tar.bz2
webtrees-22d65e5ad7724941da33d875027b68b86648a321.zip
Strict types
Diffstat (limited to 'app/GedcomTag.php')
-rw-r--r--app/GedcomTag.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/GedcomTag.php b/app/GedcomTag.php
index 3e2c28dcd8..ac0cf37c05 100644
--- a/app/GedcomTag.php
+++ b/app/GedcomTag.php
@@ -428,7 +428,7 @@ class GedcomTag
*/
public static function isTag($tag): bool
{
- return in_array($tag, self::ALL_TAGS);
+ return in_array($tag, self::ALL_TAGS, true);
}
/**