Skip to content

Commit

Permalink
chore: fixed README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
trickeyone committed Aug 9, 2020
1 parent 3522477 commit 8fe7d20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ to have access to more locales you should [install the intl PECL extension] [1].

```php
// States/Provinces for the United States of America
$subdivisionsForUS = \Symfony\Component\IntlSubdivision::getSubdivision()->getStatesAndProvincesForCountry('US');
$subdivisionsForUS = \Symfony\Component\IntlSubdivision::getStatesAndProvincesForCountry('US');

// States/Provinces for Canada
$subdivisionsForCA = \Symfony\Component\IntlSubdivision::getSubdivision()->getStatesAndProvincesForCountry('CA');
$subdivisionsForCA = \Symfony\Component\IntlSubdivision::getStatesAndProvincesForCountry('CA');

// States/Provinces for the United Arab Emirates
$subdivisionsForAE = \Symfony\Component\IntlSubdivision::getSubdivision()->getStatesAndProvincesForCountry('AE');
$subdivisionsForAE = \Symfony\Component\IntlSubdivision::getStatesAndProvincesForCountry('AE');
```

Requirements
Expand Down

0 comments on commit 8fe7d20

Please sign in to comment.