diff --git a/Localization/Defaults/City.php b/Localization/Defaults/City.php index 9112d5b47..953e63425 100755 --- a/Localization/Defaults/City.php +++ b/Localization/Defaults/City.php @@ -38,7 +38,7 @@ class City * @var string * @since 1.0.0 */ - protected string $countryCode = ''; + public string $countryCode = ''; /** * State code. @@ -46,7 +46,7 @@ class City * @var string * @since 1.0.0 */ - protected string $state = ''; + public string $state = ''; /** * City name. @@ -54,7 +54,7 @@ class City * @var string * @since 1.0.0 */ - protected string $name = ''; + public string $name = ''; /** * Postal code. @@ -62,7 +62,7 @@ class City * @var int * @since 1.0.0 */ - protected int $postal = 0; + public int $postal = 0; /** * Latitude. @@ -70,7 +70,7 @@ class City * @var float * @since 1.0.0 */ - protected float $lat = 0.0; + public float $lat = 0.0; /** * Longitude. @@ -78,7 +78,7 @@ class City * @var float * @since 1.0.0 */ - protected float $long = 0.0; + public float $long = 0.0; /** * Get city name diff --git a/Localization/Defaults/Country.php b/Localization/Defaults/Country.php index b364d7047..3a9cc9ef6 100755 --- a/Localization/Defaults/Country.php +++ b/Localization/Defaults/Country.php @@ -38,7 +38,7 @@ class Country * @var string * @since 1.0.0 */ - protected string $name = ''; + public string $name = ''; /** * Country code. @@ -46,7 +46,7 @@ class Country * @var string * @since 1.0.0 */ - protected string $code2 = ''; + public string $code2 = ''; /** * Country code. @@ -54,7 +54,7 @@ class Country * @var string * @since 1.0.0 */ - protected string $code3 = ''; + public string $code3 = ''; /** * Country code. @@ -62,7 +62,7 @@ class Country * @var int * @since 1.0.0 */ - protected int $numeric = 0; + public int $numeric = 0; /** * Country subdevision. @@ -70,7 +70,7 @@ class Country * @var string * @since 1.0.0 */ - protected string $subdevision = ''; + public string $subdevision = ''; /** * Country developed. @@ -78,7 +78,7 @@ class Country * @var bool * @since 1.0.0 */ - protected bool $isDeveloped = false; + public bool $isDeveloped = false; /** * Get id diff --git a/Localization/Defaults/Currency.php b/Localization/Defaults/Currency.php index c7ab0cf5e..1aa16f62c 100755 --- a/Localization/Defaults/Currency.php +++ b/Localization/Defaults/Currency.php @@ -38,7 +38,7 @@ class Currency * @var string * @since 1.0.0 */ - protected string $name = ''; + public string $name = ''; /** * Currency code. @@ -46,7 +46,7 @@ class Currency * @var string * @since 1.0.0 */ - protected string $code = ''; + public string $code = ''; /** * Currency symbol. @@ -54,7 +54,7 @@ class Currency * @var string * @since 1.0.0 */ - protected string $symbol = ''; + public string $symbol = ''; /** * Currency number. @@ -62,7 +62,7 @@ class Currency * @var string * @since 1.0.0 */ - protected string $number = ''; + public string $number = ''; /** * Currency subunits. @@ -70,7 +70,7 @@ class Currency * @var int * @since 1.0.0 */ - protected int $subunits = 0; + public int $subunits = 0; /** * Currency decimals. @@ -78,7 +78,7 @@ class Currency * @var string * @since 1.0.0 */ - protected string $decimals = ''; + public string $decimals = ''; /** * Currency countries. @@ -86,7 +86,7 @@ class Currency * @var string * @since 1.0.0 */ - protected string $countries = ''; + public string $countries = ''; /** * Get currency name diff --git a/Localization/Defaults/Iban.php b/Localization/Defaults/Iban.php index 06cf41bb5..5ebc3c3de 100755 --- a/Localization/Defaults/Iban.php +++ b/Localization/Defaults/Iban.php @@ -38,7 +38,7 @@ class Iban * @var string * @since 1.0.0 */ - protected string $country = ''; + public string $country = ''; /** * Iban chars. @@ -46,7 +46,7 @@ class Iban * @var int * @since 1.0.0 */ - protected int $chars = 2; + public int $chars = 2; /** * Iban bban. @@ -54,7 +54,7 @@ class Iban * @var string * @since 1.0.0 */ - protected string $bban = ''; + public string $bban = ''; /** * Iban fields. @@ -62,7 +62,7 @@ class Iban * @var string * @since 1.0.0 */ - protected string $fields = ''; + public string $fields = ''; /** * Get iban country diff --git a/Localization/Defaults/Language.php b/Localization/Defaults/Language.php index c2c2360f8..2089e9fbb 100755 --- a/Localization/Defaults/Language.php +++ b/Localization/Defaults/Language.php @@ -38,7 +38,7 @@ class Language * @var string * @since 1.0.0 */ - protected string $name = ''; + public string $name = ''; /** * Language native. @@ -46,7 +46,7 @@ class Language * @var string * @since 1.0.0 */ - protected string $native = ''; + public string $native = ''; /** * Language code. @@ -54,7 +54,7 @@ class Language * @var string * @since 1.0.0 */ - protected string $code2 = ''; + public string $code2 = ''; /** * Language code. @@ -62,7 +62,7 @@ class Language * @var string * @since 1.0.0 */ - protected string $code3 = ''; + public string $code3 = ''; /** * Language code. @@ -70,7 +70,7 @@ class Language * @var string * @since 1.0.0 */ - protected string $code3Native = ''; + public string $code3Native = ''; /** * Get id