for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ICanBoogie\CLDR;
/**
* A localized territory.
*
* @extends LocalizedObject<Territory>
*/
class LocalizedTerritory extends LocalizedObject
{
* @var string The localized name of the territory.
public readonly string $name;
public function __construct(Territory $target, Locale $locale)
$this->name = $locale['territories'][$target->code->value];
name
ICanBoogie\CLDR\LocalizedTerritory
parent::__construct($target, $locale);
}