Skip to content

Commit

Permalink
CountrySynchronizer: Use BRJ CDN for download data.
Browse files Browse the repository at this point in the history
  • Loading branch information
janbarasek authored Aug 12, 2023
1 parent 6555ce4 commit 6ec1916
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/CountrySynchronizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,17 @@ final class CountrySynchronizer
'CZE',
];

private string $isoCodes = 'http://country.io/iso3.json';
private string $isoCodes = 'https://cdn.brj.cz/data/country/iso3.json';

private string $names = 'http://country.io/names.json';
private string $names = 'https://cdn.brj.cz/data/country/names.json';

private string $continent = 'http://country.io/continent.json';
private string $continent = 'https://cdn.brj.cz/data/country/continent.json';

private string $capital = 'http://country.io/capital.json';
private string $capital = 'https://cdn.brj.cz/data/country/capital.json';

private string $phoneCode = 'http://country.io/phone.json';
private string $phoneCode = 'https://cdn.brj.cz/data/country/phone.json';

private string $currency = 'http://country.io/currency.json';
private string $currency = 'https://cdn.brj.cz/data/country/currency.json';

private CountryRepository $countryRepository;

Expand Down

0 comments on commit 6ec1916

Please sign in to comment.