for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* identity (https://github.com/phpgears/identity).
* Identity objects for PHP.
*
* @license MIT
* @link https://github.com/phpgears/identity
* @author Julián Gutiérrez <[email protected]>
*/
declare(strict_types=1);
namespace Gears\Identity;
/**
* Base62 UUID identity generator.
class Base62UuidIdentityGenerator extends AbstractUuidIdentityGenerator
{
* {@inheritdoc}
* @return Base62UuidIdentity
public function generate()
return Base62UuidIdentity::fromUuid($this->getUuidString());
}