Home
last modified time | relevance | path

Searched refs:century_service (Results 1 – 11 of 11) sorted by relevance

/webtrees/app/Statistics/Google/
H A DChartChildren.php36 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartChildren
39 * @param CenturyService $century_service
42 public function __construct(CenturyService $century_service, Tree $tree) argument
44 $this->century_service = $century_service;
91 $this->century_service->centuryName($record->century),
H A DChartDivorce.php39 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartDivorce
44 * @param CenturyService $century_service
48 …public function __construct(CenturyService $century_service, ColorService $color_service, Tree $tr… argument
50 $this->century_service = $century_service;
100 $this->century_service->centuryName($record->century),
H A DChartDeath.php39 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartDeath
44 * @param CenturyService $century_service
48 …public function __construct(CenturyService $century_service, ColorService $color_service, Tree $tr… argument
50 $this->century_service = $century_service;
100 $this->century_service->centuryName($record->century),
H A DChartBirth.php39 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartBirth
44 * @param CenturyService $century_service
48 …public function __construct(CenturyService $century_service, ColorService $color_service, Tree $tr… argument
50 $this->century_service = $century_service;
100 $this->century_service->centuryName($record->century),
H A DChartMarriage.php39 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartMarriage
44 * @param CenturyService $century_service
48 …public function __construct(CenturyService $century_service, ColorService $color_service, Tree $tr… argument
51 $this->century_service = $century_service;
100 $this->century_service->centuryName($record->century),
H A DChartNoChildrenFamilies.php37 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartNoChildrenFamilies
40 * @param CenturyService $century_service
43 public function __construct(CenturyService $century_service, Tree $tree) argument
45 $this->century_service = $century_service;
107 $this->century_service->centuryName((int) $record->century),
H A DChartAge.php40 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartAge
43 * @param CenturyService $century_service
46 public function __construct(CenturyService $century_service, Tree $tree) argument
48 $this->century_service = $century_service;
120 $this->century_service->centuryName($century),
H A DChartMarriageAge.php40 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartMarriageAge
43 * @param CenturyService $century_service
46 public function __construct(CenturyService $century_service, Tree $tree) argument
49 $this->century_service = $century_service;
143 $this->century_service->centuryName($century),
/webtrees/app/Statistics/Repository/
H A DFamilyRepository.php56 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Repository\\FamilyRepository
63 * @param CenturyService $century_service
67 …public function __construct(CenturyService $century_service, ColorService $color_service, Tree $tr… argument
69 $this->century_service = $century_service;
293 return (new ChartNoChildrenFamilies($this->century_service, $this->tree))
586 return (new ChartChildren($this->century_service, $this->tree))
1433 return (new ChartMarriageAge($this->century_service, $this->tree))
1714 return (new ChartMarriage($this->century_service, $this->color_service, $this->tree))
1728 return (new ChartDivorce($this->century_service, $this->color_service, $this->tree))
H A DIndividualRepository.php69 private CenturyService $century_service; variable in Fisharebest\\Webtrees\\Statistics\\Repository\\IndividualRepository
76 * @param CenturyService $century_service
80 …public function __construct(CenturyService $century_service, ColorService $color_service, Tree $tr… argument
82 $this->century_service = $century_service;
728 return (new ChartBirth($this->century_service, $this->color_service, $this->tree))
786 return (new ChartDeath($this->century_service, $this->color_service, $this->tree))
830 return (new ChartAge($this->century_service, $this->tree))->chartAge();
/webtrees/app/
H A DStatistics.php132 * @param CenturyService $century_service
140 CenturyService $century_service, argument
149 …$this->individual_repository = new IndividualRepository($century_service, $color_service, $tree);
150 … $this->family_repository = new FamilyRepository($century_service, $color_service, $tree);