diff options
| author | Greg Roach <greg@subaqua.co.uk> | 2023-06-06 12:29:28 +0100 |
|---|---|---|
| committer | Greg Roach <greg@subaqua.co.uk> | 2023-06-20 13:14:29 +0100 |
| commit | 0acf1b4bae16cbf21a23b10e22e968d2efdf4aea (patch) | |
| tree | 6a91cb9e0c0f7c54dfcd4b10805f4f245e5a1e3c /resources | |
| parent | c47a28c0de52816866b517de1079b44c42a12fbd (diff) | |
| download | webtrees-0acf1b4bae16cbf21a23b10e22e968d2efdf4aea.tar.gz webtrees-0acf1b4bae16cbf21a23b10e22e968d2efdf4aea.tar.bz2 webtrees-0acf1b4bae16cbf21a23b10e22e968d2efdf4aea.zip | |
Static analysis
Diffstat (limited to 'resources')
| -rw-r--r-- | resources/views/admin/components.phtml | 3 | ||||
| -rw-r--r-- | resources/views/admin/users-edit.phtml | 1 | ||||
| -rw-r--r-- | resources/views/edit/raw-gedcom-fact.phtml | 1 | ||||
| -rw-r--r-- | resources/views/family-page-parents.phtml | 4 |
4 files changed, 3 insertions, 6 deletions
diff --git a/resources/views/admin/components.phtml b/resources/views/admin/components.phtml index 2adb651c04..7144722530 100644 --- a/resources/views/admin/components.phtml +++ b/resources/views/admin/components.phtml @@ -17,7 +17,7 @@ use Illuminate\Support\Collection; /** * @var array<string,array<string,string>> $access_summary * @var string $description - * @var string $interface + * @var class-string<ModuleInterface> $interface * @var Collection<int,ModuleInterface> $modules * @var string $title * @var Collection<int,Tree> $trees @@ -189,4 +189,3 @@ use Illuminate\Support\Collection; }); </script> <?php View::endpush() ?> - diff --git a/resources/views/admin/users-edit.phtml b/resources/views/admin/users-edit.phtml index a5976e89f7..da9a2eb221 100644 --- a/resources/views/admin/users-edit.phtml +++ b/resources/views/admin/users-edit.phtml @@ -369,4 +369,3 @@ use Illuminate\Support\Collection; }); </script> <?php View::endpush() ?> - diff --git a/resources/views/edit/raw-gedcom-fact.phtml b/resources/views/edit/raw-gedcom-fact.phtml index 03dfdb88a6..ebeb3d711d 100644 --- a/resources/views/edit/raw-gedcom-fact.phtml +++ b/resources/views/edit/raw-gedcom-fact.phtml @@ -57,4 +57,3 @@ use Fisharebest\Webtrees\Webtrees; webtrees.textareaPatterns(document.getElementById('edit-raw-gedcom')); </script> <?php View::endpush() ?> - diff --git a/resources/views/family-page-parents.phtml b/resources/views/family-page-parents.phtml index 26f31972df..5d50d2d210 100644 --- a/resources/views/family-page-parents.phtml +++ b/resources/views/family-page-parents.phtml @@ -33,7 +33,7 @@ use Fisharebest\Webtrees\Individual; <?php endif ?> </div> - <?= view('family-page-grandparents', ['family' => $family, 'parent_family' => $family?->husband()?->childFamilies()->first(), 'individual' => $family->husband()]) ?> + <?= view('family-page-grandparents', ['family' => $family, 'parent_family' => $family->husband()?->childFamilies()->first(), 'individual' => $family->husband()]) ?> </div> <div class="d-flex"> @@ -55,7 +55,7 @@ use Fisharebest\Webtrees\Individual; <?php endif ?> </div> - <?= view('family-page-grandparents', ['family' => $family, 'parent_family' => $family?->wife()?->childFamilies()->first(), 'individual' => $family->wife()]) ?> + <?= view('family-page-grandparents', ['family' => $family, 'parent_family' => $family->wife()?->childFamilies()->first(), 'individual' => $family->wife()]) ?> </div> </div> </div> |
