| 1 | <?php |
||
| 31 | class Name |
||
| 32 | { |
||
| 33 | /** |
||
| 34 | * POR name |
||
| 35 | * |
||
| 36 | * @var string |
||
| 37 | */ |
||
| 38 | public $nameOfPOR; |
||
| 39 | /** |
||
| 40 | * Code of language (ISO 639-1988). |
||
| 41 | * |
||
| 42 | * @var string |
||
| 43 | */ |
||
| 44 | public $language; |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Name Constructor. |
||
| 48 | * |
||
| 49 | * @param string|null $name |
||
| 50 | */ |
||
| 51 | 2 | public function __construct($name = null) |
|
| 55 | } |
||
| 56 |