Lines Matching refs:total

144      * @param int $total
148 private function topTenGrandFamilyQuery(int $total): array argument
171 ->limit($total)
194 * @param int $total
198 public function topTenLargestGrandFamily(int $total = 10): string argument
201 'records' => $this->topTenGrandFamilyQuery($total),
208 * @param int $total
212 public function topTenLargestGrandFamilyList(int $total = 10): string argument
215 'records' => $this->topTenGrandFamilyQuery($total),
300 * @param int $total The total number of records to query
304 private function ageBetweenSiblingsQuery(int $total): array argument
332 ->take($total)
364 * @param int $total The total number of records to query
369 private function ageBetweenSiblingsNoList(int $total): array argument
371 $rows = $this->ageBetweenSiblingsQuery($total);
395 * @param int $total The total number of records to query
401 private function ageBetweenSiblingsList(int $total, bool $one): array argument
403 $rows = $this->ageBetweenSiblingsQuery($total);
441 * @param int $total The total number of records to query
445 private function ageBetweenSiblingsAge(int $total): string argument
447 $rows = $this->ageBetweenSiblingsQuery($total);
459 * @param int $total The total number of records to query
464 private function ageBetweenSiblingsName(int $total): string argument
466 $rows = $this->ageBetweenSiblingsQuery($total);
491 * @param int $total
495 public function topAgeBetweenSiblingsName(int $total = 10): string argument
497 return $this->ageBetweenSiblingsName($total);
503 * @param int $total
507 public function topAgeBetweenSiblings(int $total = 10): string argument
509 return $this->ageBetweenSiblingsAge($total);
515 * @param int $total
519 public function topAgeBetweenSiblingsFullName(int $total = 10): string argument
521 $record = $this->ageBetweenSiblingsNoList($total);
535 * @param int $total
540 public function topAgeBetweenSiblingsList(int $total = 10, string $one = ''): string argument
542 $records = $this->ageBetweenSiblingsList($total, (bool) $one);
597 $total = (int) DB::table('families')
601 return I18N::number($total);
621 * @param int $total
625 private function topTenFamilyQuery(int $total): array argument
630 ->limit($total)
644 * @param int $total
648 public function topTenLargestFamily(int $total = 10): string argument
650 $records = $this->topTenFamilyQuery($total);
660 * @param int $total
664 public function topTenLargestFamilyList(int $total = 10): string argument
666 $records = $this->topTenFamilyQuery($total);
678 * @param int $total
685 int $total = 10 argument
688 ->chartLargestFamilies($color_from, $color_to, $total);
1008 * @param int $total
1012 private function ageOfMarriageQuery(string $type, string $age_dir, int $total): string argument
1132 if (++$i === $total) {
1190 * @param int $total
1194 public function topAgeOfMarriageFamilies(int $total = 10): string argument
1196 return $this->ageOfMarriageQuery('nolist', 'DESC', $total);
1202 * @param int $total
1206 public function topAgeOfMarriageFamiliesList(int $total = 10): string argument
1208 return $this->ageOfMarriageQuery('list', 'DESC', $total);
1234 * @param int $total
1238 public function minAgeOfMarriageFamilies(int $total = 10): string argument
1240 return $this->ageOfMarriageQuery('nolist', 'ASC', $total);
1246 * @param int $total
1250 public function minAgeOfMarriageFamiliesList(int $total = 10): string argument
1252 return $this->ageOfMarriageQuery('list', 'ASC', $total);
1259 * @param int $total
1263 private function ageBetweenSpousesQuery(string $age_dir, int $total): array argument
1295 ->take($total)
1320 * @param int $total
1324 public function ageBetweenSpousesMF(int $total = 10): string argument
1326 $records = $this->ageBetweenSpousesQuery('DESC', $total);
1336 * @param int $total
1340 public function ageBetweenSpousesMFList(int $total = 10): string argument
1342 $records = $this->ageBetweenSpousesQuery('DESC', $total);
1352 * @param int $total
1356 public function ageBetweenSpousesFM(int $total = 10): string argument
1358 $records = $this->ageBetweenSpousesQuery('ASC', $total);
1368 * @param int $total
1372 public function ageBetweenSpousesFMList(int $total = 10): string argument
1374 $records = $this->ageBetweenSpousesQuery('ASC', $total);