for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ICanBoogie\CLDR\Core;
/**
* A localized locale.
*
* @extends LocalizedObject<Locale>
*/
class LocaleLocalized 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\Core\LocaleLocalized
parent::__construct($target, $locale);
}