Add docblocks

This commit is contained in:
Dennis Eichhorn 2019-10-05 20:01:08 +02:00
parent 85746809af
commit 1e0a841447
2 changed files with 24 additions and 0 deletions

View File

@ -72,6 +72,18 @@ final class Country
*/
private $subdevision = '';
/**
* Get id
*
* @return int
*
* @since 1.0.0
*/
public function getId() : int
{
return $this->id;
}
/**
* Get country name
*

View File

@ -72,6 +72,18 @@ final class Language
*/
private $code3Native = '';
/**
* Get id
*
* @return int
*
* @since 1.0.0
*/
public function getId() : int
{
return $this->id;
}
/**
* Get language name
*