/home/techb158/immovalet.com/vendor/ramsey/uuid/src/Generator
Edit: /home/techb158/immovalet.com/vendor/ramsey/uuid/src/Generator/NameGeneratorFactory.php (698B)
* @license http://opensource.org/licenses/MIT MIT
*/
declare(strict_types=1);
namespace Ramsey\Uuid\Generator;
/**
* NameGeneratorFactory retrieves a default name generator, based on the
* environment
*/
class NameGeneratorFactory
{
/**
* Returns a default name generator, based on the current environment
*/
public function getGenerator(): NameGeneratorInterface
{
return new DefaultNameGenerator();
}
}