Skip to content

Commit

Permalink
Add standard to specifications
Browse files Browse the repository at this point in the history
  • Loading branch information
PrinsFrank committed Mar 25, 2023
1 parent e467fa7 commit 97d4bb5
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/Country/CountryAlpha2.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/**
* @source https://www.iso.org/obp/ui/#search/code/
* @standard ISO3166_1
*/
enum CountryAlpha2: string
{
Expand Down
1 change: 1 addition & 0 deletions src/Country/CountryAlpha3.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/**
* @source https://www.iso.org/obp/ui/#search/code/
* @standard ISO3166_1
*/
enum CountryAlpha3: string
{
Expand Down
1 change: 1 addition & 0 deletions src/Country/CountryName.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/**
* @source https://www.iso.org/obp/ui/#search/code/
* @standard ISO3166_1
*/
enum CountryName: string
{
Expand Down
1 change: 1 addition & 0 deletions src/Country/CountryNumeric.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/**
* @source https://www.iso.org/obp/ui/#search/code/
* @standard ISO3166_1
*/
enum CountryNumeric: string
{
Expand Down
1 change: 1 addition & 0 deletions src/Currency/CurrencyAlpha3.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @source https://www.iso.org/iso-4217-currency-codes.html
* @source https://www.six-group.com/en/products-services/financial-information/data-standards.html
* @source https://www.six-group.com/dam/download/financial-information/data-center/iso-currrency/lists/list_one.xml
* @standard ISO4217
*/
enum CurrencyAlpha3: string
{
Expand Down
1 change: 1 addition & 0 deletions src/Currency/CurrencyName.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @source https://www.iso.org/iso-4217-currency-codes.html
* @source https://www.six-group.com/en/products-services/financial-information/data-standards.html
* @source https://www.six-group.com/dam/download/financial-information/data-center/iso-currrency/lists/list_one.xml
* @standard ISO4217
*/
enum CurrencyName: string
{
Expand Down
1 change: 1 addition & 0 deletions src/Currency/CurrencyNumeric.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
* @source https://www.iso.org/iso-4217-currency-codes.html
* @source https://www.six-group.com/en/products-services/financial-information/data-standards.html
* @source https://www.six-group.com/dam/download/financial-information/data-center/iso-currrency/lists/list_one.xml
* @standard ISO4217
*/
enum CurrencyNumeric: string
{
Expand Down
3 changes: 3 additions & 0 deletions src/InternationalCallPrefix/InternationalCallPrefix.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@

namespace PrinsFrank\Standards\InternationalCallPrefix;

/**
* @standard ITU_T_E_164
*/
enum InternationalCallPrefix: string
{
case _0 = '0';
Expand Down
1 change: 1 addition & 0 deletions src/Language/LanguageAlpha2.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
/**
* @source https://www.iso.org/iso-639-language-codes.html
* @source http://www.loc.gov/standards/iso639-2/php/code_list.php
* @standard ISO639_1
*/
enum LanguageAlpha2: string
{
Expand Down
1 change: 1 addition & 0 deletions src/Language/LanguageAlpha3Bibliographic.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
/**
* @source https://www.iso.org/iso-639-language-codes.html
* @source http://www.loc.gov/standards/iso639-2/php/code_list.php
* @standard ISO639_1
*/
enum LanguageAlpha3Bibliographic: string
{
Expand Down
1 change: 1 addition & 0 deletions src/Language/LanguageAlpha3Common.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
/**
* @source https://www.iso.org/iso-639-language-codes.html
* @source http://www.loc.gov/standards/iso639-2/php/code_list.php
* @standard ISO639_1
*/
enum LanguageAlpha3Common: string
{
Expand Down
1 change: 1 addition & 0 deletions src/Language/LanguageAlpha3Terminology.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
/**
* @source https://www.iso.org/iso-639-language-codes.html
* @source http://www.loc.gov/standards/iso639-2/php/code_list.php
* @standard ISO639_1
*/
enum LanguageAlpha3Terminology: string
{
Expand Down
1 change: 1 addition & 0 deletions src/Language/LanguageName.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
/**
* @source https://www.iso.org/iso-639-language-codes.html
* @source http://www.loc.gov/standards/iso639-2/php/code_list.php
* @standard ISO639_1
*/
enum LanguageName: string
{
Expand Down

0 comments on commit 97d4bb5

Please sign in to comment.