summaryrefslogtreecommitdiff
path: root/app/Report/ReportParserBase.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2019-04-17 13:44:21 +0100
committerGreg Roach <fisharebest@webtrees.net>2019-04-17 13:50:38 +0100
commit9d454b6b5c779887fb852aa7e56ef527aa07148d (patch)
tree527ac2aa8191e94a59af8cb166b75481a6770895 /app/Report/ReportParserBase.php
parent74d6dc0ec259c643834b111577684e38e74234c8 (diff)
downloadwebtrees-9d454b6b5c779887fb852aa7e56ef527aa07148d.tar.gz
webtrees-9d454b6b5c779887fb852aa7e56ef527aa07148d.tar.bz2
webtrees-9d454b6b5c779887fb852aa7e56ef527aa07148d.zip
Type hints
Diffstat (limited to 'app/Report/ReportParserBase.php')
-rw-r--r--app/Report/ReportParserBase.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Report/ReportParserBase.php b/app/Report/ReportParserBase.php
index 4229fb0ce6..265328fbde 100644
--- a/app/Report/ReportParserBase.php
+++ b/app/Report/ReportParserBase.php
@@ -56,7 +56,7 @@ class ReportParserBase
xml_set_character_data_handler(
$this->xml_parser,
- function ($parser, $data): void {
+ function ($parser, string $data): void {
$this->characterData($parser, $data);
}
);