Skip to content
This repository has been archived by the owner on Aug 31, 2022. It is now read-only.

Commit

Permalink
lowercased variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
WouterSioen committed Aug 26, 2015
1 parent 74eb1a6 commit eaeb935
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 @@ -58,12 +58,12 @@ $language = (new Countries)->getSpecificForLanguage('be', 'en');
```php
use Sioen\ContryList;

$Countries = new Countries();
$countries = new Countries();

// fetch an array of countries in a language
$languages = $Countries->getForLanguage('en');
$languages = $countries->getForLanguage('en');

// fetch one country in a language
$language = $Countries->getSpecificForLanguage('be', 'en');
$language = $countries->getSpecificForLanguage('be', 'en');
// returns 'Belgium'
```

0 comments on commit eaeb935

Please sign in to comment.