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