diff options
| author | Greg Roach <fisharebest@gmail.com> | 2021-05-10 21:11:51 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2021-05-11 10:01:24 +0100 |
| commit | 4dbb2a39d4ff3907e4739e53d4c0af9bf637bb4d (patch) | |
| tree | bc5330fc8d70737d4920804a372bca804229deb7 /app/Factories | |
| parent | a10ff2610e52a342455c5fbf68e0869164e2970e (diff) | |
| download | webtrees-4dbb2a39d4ff3907e4739e53d4c0af9bf637bb4d.tar.gz webtrees-4dbb2a39d4ff3907e4739e53d4c0af9bf637bb4d.tar.bz2 webtrees-4dbb2a39d4ff3907e4739e53d4c0af9bf637bb4d.zip | |
Add API to modify subtags
Diffstat (limited to 'app/Factories')
| -rw-r--r-- | app/Factories/ElementFactory.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Factories/ElementFactory.php b/app/Factories/ElementFactory.php index 038f09ddd5..a37625ea10 100644 --- a/app/Factories/ElementFactory.php +++ b/app/Factories/ElementFactory.php @@ -218,7 +218,7 @@ use function strpos; class ElementFactory implements ElementFactoryInterface { /** @var array<string,ElementInterface> */ - private $elements = []; + private array $elements = []; /** * Create a GEDCOM element that corresponds to a GEDCOM tag. |
