Lines Matching refs:row
58 $row = DB::table('place_location')
63 if ($row === null) {
67 $hierarchy[] = $row->place;
68 $id = $row->parent_id;
92 foreach ($rows as $row) {
93 $children[mb_strtolower($row->p_place)][] = $row;
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…
257 ->map(static function (object $row): object {
258 $row->child_count = (int) $row->child_count;
259 $row->no_coord = (int) $row->no_coord;
260 $row->key = mb_strtolower($row->place);
262 return $row;