for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace ICanBoogie\CLDR\Supplemental\Plurals;
/**
* @internal
*/
final class RelationCache
{
* @param callable():Relation $new
public static function get(string $relation, callable $new): Relation
static $instances;
return $instances[$relation] ??= $new();
}