for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dontdrinkandroot\Entity;
/**
* @author Philip Washington Sorst <[email protected]>
*/
class DefaultUuidEntity extends GeneratedIntegerIdEntity implements UuidEntityInterface
{
/** @var string */
private $uuid;
* {@inheritdoc}
public function getUuid(): ?string
return $this->uuid;
}
public function setUuid(string $uuid): void
$this->uuid = $uuid;