for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Jellyfish\UuidRamsey;
use Jellyfish\Uuid\UuidFacadeInterface;
class UuidRamseyFacade implements UuidFacadeInterface
{
/**
* @var \Jellyfish\UuidRamsey\UuidRamseyFactory
*/
protected $factory;
* @param \Jellyfish\UuidRamsey\UuidRamseyFactory $factory
public function __construct(UuidRamseyFactory $factory)
$this->factory = $factory;
}
* @return string
public function generateUuid(): string
return $this->factory->createUuidGenerator()->generate();