/webtrees/ |
H A D | phpstan-baseline.neon | 244 …of method Fisharebest\\Webtrees\\Container\<T of object\>\:\:get\(\) expects class\-string\<T of o… 676 message: '#^Access to an undefined property object\:\:\$f_gedcom\.$#' 682 message: '#^Access to an undefined property object\:\:\$f_id\.$#' 700 …able\(mixed, int\|string\)\: Fisharebest\\Webtrees\\Individual, Closure\(object\)\: Fisharebest\\W… 718 message: '#^Access to an undefined property object\:\:\$o_gedcom\.$#' 724 message: '#^Access to an undefined property object\:\:\$o_id\.$#' 754 message: '#^Access to an undefined property object\:\:\$o_gedcom\.$#' 760 message: '#^Access to an undefined property object\:\:\$o_id\.$#' 814 message: '#^Access to an undefined property object\:\:\$i_gedcom\.$#' 820 message: '#^Access to an undefined property object\:\:\$i_id\.$#' [all …]
|
H A D | LICENSE.md | 135 produce the work, or an object code interpreter used to run it. 137 The “Corresponding Source” for a work in object code form means all 139 work) run the object code and to modify the work, including scripts to 250 You may convey a covered work in object code form under the terms 255 * **a)** Convey the object code in, or embodied in, a physical product 260 * **b)** Convey the object code in, or embodied in, a physical product 264 model, to give anyone who possesses the object code either (1) a 272 * **c)** Convey individual copies of the object code with a copy of the 275 only if you received the object code with such an offer, in accord 278 * **d)** Convey the object code by offering access from a designated [all …]
|
/webtrees/app/Module/ |
H A D | RecentChangesModule.php | 120 …$rows = $rows->sort(static fn (object $x, object $y): int => GedcomRecord::nameComparator()($x->r… 125 … $rows = $rows->sort(static fn (object $x, object $y): int => $x->time <=> $y->time); 131 … $rows = $rows->sort(static fn (object $x, object $y): int => $y->time <=> $x->time); 306 ->map(fn (object $row): object => (object) [ 311 …->filter(static fn (object $row): bool => $row->record instanceof GedcomRecord && $row->record->ca… 355 ->map(function (GedcomRecord $record): object {
|
H A D | StoriesModule.php | 392 ->map(function (object $story) use ($tree): object { 403 …->filter(static fn (object $story): bool => $story->individual instanceof Individual && $story->in… 405 …->filter(static fn (object $story): bool => $story->languages === '' || in_array(I18N::languageTag…
|
H A D | FrequentlyAskedQuestionsModule.php | 386 …->filter(static fn (object $faq): bool => $faq->languages === '' || in_array(I18N::languageTag(), … 418 ->map(static function (object $row): object { 446 …->filter(static fn (object $faq): bool => $faq->languages === '' || in_array($language, explode(',…
|
H A D | ModuleDataFixTrait.php | 109 ->sort(static fn (object $x, object $y) => $x->xref <=> $y->xref); 425 ->map(static fn (string $xref): object => (object) ['xref' => $xref, 'type' => $type]);
|
H A D | UserMessagesModule.php | 117 ->map(static function (object $row): object {
|
/webtrees/app/ |
H A D | Container.php | 56 public function get(string $id): object 63 * @param T $object 67 public function set(string $id, object $object): static argument 69 $this->container[$id] = $object; variable in Fisharebest\\Webtrees\\Container 79 private function make(string $id): object
|
/webtrees/app/Services/ |
H A D | MapDataService.php | 127 …->map(static fn (object $row): string => implode(Gedcom::PLACE_SEPARATOR, array_filter((array) $ro… 150 …->map(static fn (object $row): string => implode(Gedcom::PLACE_SEPARATOR, array_filter((array) $ro… 201 … $place_ids = $places->map(static fn (object $place): int => (int) $place->p_id)->all(); 257 ->map(static function (object $row): object { 264 … ->sort(static fn (object $x, object $y): int => I18N::comparator()($x->place, $y->place));
|
H A D | SearchService.php | 495 $row_mapper = static function (object $row) use ($tree): Place { 1187 return function (object $row): Family { 1201 return function (object $row): Individual { 1215 return function (object $row): Location { 1229 return function (object $row): Media { 1243 return function (object $row): Note { 1257 return function (object $row): Repository { 1271 return function (object $row): Note { 1285 return function (object $row): Source { 1299 return function (object $row): Submission { [all …]
|
H A D | LeafletJsService.php | 46 public function config(): object 52 ->map(static fn (ModuleMapProviderInterface $map_provider): object => (object) [
|
/webtrees/app/Factories/ |
H A D | ImageFactory.php | 96 … ->withHeader('x-thumbnail-exception', get_class(object: $ex) . ': ' . $ex->getMessage()); 121 … ->withHeader('x-thumbnail-exception', get_class(object: $ex) . ': ' . $ex->getMessage()); 125 … ->withHeader('x-thumbnail-exception', get_class(object: $ex) . ': ' . $ex->getMessage()); 129 … ->withHeader('x-thumbnail-exception', get_class(object: $ex) . ': ' . $ex->getMessage()); 160 … ->withHeader('x-thumbnail-exception', get_class(object: $ex) . ': ' . $ex->getMessage()); 218 … ->withHeader('x-thumbnail-exception', get_class(object: $ex) . ': ' . $ex->getMessage()); 222 … ->withHeader('x-thumbnail-exception', get_class(object: $ex) . ': ' . $ex->getMessage()); 226 … ->withHeader('x-thumbnail-exception', get_class(object: $ex) . ': ' . $ex->getMessage());
|
/webtrees/app/Http/RequestHandlers/ |
H A D | TreePrivacyPage.php | 110 ->map(static function (object $row) use ($tree): object { 135 … ->sort(static fn (object $x, object $y): int => I18N::comparator()($x->tag_label, $y->tag_label))
|
H A D | CheckTree.php | 136 ->map(static function (object $row): object { 416 ): object { 442 … function recordError(Tree $tree, string $type, string $xref, string $message, string $tag): object
|
H A D | DataFixUpdateAll.php | 92 …->map(fn (object $row): GedcomRecord|null => $this->data_fix_service->getRecordByType($row->xref, … 120 … ->map(static function (Collection $chunk) use ($module, $params, $tree, $total): object {
|
/webtrees/app/Statistics/Repository/ |
H A D | EventRepository.php | 221 private function eventQuery(string $direction): object|null 233 ->map(static fn (object $row): object => (object) [
|
H A D | FamilyDatesRepository.php | 72 private function eventQuery(string $fact, string $operation): object|null 87 ->map(static fn (object $row): object => (object) [
|
/webtrees/app/Contracts/ |
H A D | ContainerInterface.php | 29 public function set(string $id, object $object): static; argument
|
/webtrees/app/Statistics/Google/ |
H A D | ChartChildren.php | 69 ->map(static fn (object $row): object => (object) [
|
H A D | ChartDivorce.php | 72 ->map(static fn (object $row): object => (object) [
|
H A D | ChartDeath.php | 72 ->map(static fn (object $row): object => (object) [
|
H A D | ChartBirth.php | 72 ->map(static fn (object $row): object => (object) [
|
H A D | ChartMarriage.php | 72 ->map(static fn (object $row): object => (object) [
|
H A D | ChartAge.php | 86 ->map(static fn (object $row): object => (object) [
|
H A D | ChartMarriageAge.php | 108 ->map(static fn (object $row): object => (object) [
|