This pattern can be used to contain a registered Pools of Singletons, each distinguished by unique ID:
abstract class MultitonRegistryAbstract
{
/**
* @var array
*/
protected static $instances = [];
/**
* @param string $id
*/
final protected function ...