Home
last modified time | relevance | path

Searched refs:country_service (Results 1 – 3 of 3) sorted by relevance

/webtrees/app/Statistics/Repository/
H A DPlaceRepository.php45 private CountryService $country_service; variable in Fisharebest\\Webtrees\\Statistics\\Repository\\PlaceRepository
51 * @param CountryService $country_service
56 CountryService $country_service, argument
60 $this->country_service = $country_service;
222 $all_countries = $this->country_service->getAllCountries();
243 $all_countries = $this->country_service->getAllCountries();
305 … return (new ChartDistribution($this->tree, $this->country_service, $this->individual_repository))
/webtrees/app/Statistics/Google/
H A DChartDistribution.php42 private CountryService $country_service; variable in Fisharebest\\Webtrees\\Statistics\\Google\\ChartDistribution
53 * @param CountryService $country_service
58 CountryService $country_service, argument
62 $this->country_service = $country_service;
84 $countries = $this->country_service->getAllCountries();
86 foreach ($this->country_service->iso3166() as $three => $two) {
118 'f' => $this->country_service->mapTwoLetterToName($country),
/webtrees/app/
H A DStatistics.php134 * @param CountryService $country_service
142 CountryService $country_service, argument
163 …$this->place_repository = new PlaceRepository($tree, $country_service, $this->individual_re…