-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3c92884
commit a6ce2cd
Showing
4 changed files
with
60 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace PrinsFrank\Standards\Dev\DataSource\CountryShort; | ||
|
||
use PrinsFrank\Standards\CountryShort\CountryAlpha2; | ||
use PrinsFrank\Standards\Dev\DataSource\Country\ISO3166_1_Alpha_2_Source; | ||
|
||
class CountryAlpha2Source extends ISO3166_1_Alpha_2_Source | ||
{ | ||
public static function getSpecFQN(): string | ||
{ | ||
return CountryAlpha2::class; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace PrinsFrank\Standards\Dev\DataSource\CountryShort; | ||
|
||
use PrinsFrank\Standards\CountryShort\CountryAlpha3; | ||
use PrinsFrank\Standards\Dev\DataSource\Country\ISO3166_1_Alpha_3_Source; | ||
|
||
class CountryAlpha3Source extends ISO3166_1_Alpha_3_Source | ||
{ | ||
public static function getSpecFQN(): string | ||
{ | ||
return CountryAlpha3::class; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace PrinsFrank\Standards\Dev\DataSource\CountryShort; | ||
|
||
use PrinsFrank\Standards\CountryShort\CountryName; | ||
use PrinsFrank\Standards\Dev\DataSource\Country\ISO3166_1_Name_Source; | ||
|
||
class CountryNameSource extends ISO3166_1_Name_Source | ||
{ | ||
public static function getSpecFQN(): string | ||
{ | ||
return CountryName::class; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace PrinsFrank\Standards\Dev\DataSource\CountryShort; | ||
|
||
use PrinsFrank\Standards\CountryShort\CountryNumeric; | ||
use PrinsFrank\Standards\Dev\DataSource\Country\ISO3166_1_Numeric_Source; | ||
|
||
class CountryNumericSource extends ISO3166_1_Numeric_Source | ||
{ | ||
public static function getSpecFQN(): string | ||
{ | ||
return CountryNumeric::class; | ||
} | ||
} |