mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 01:38:41 +00:00
fix model visibilities
This commit is contained in:
parent
567ab3bfcd
commit
2655c816a9
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user