for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dontdrinkandroot\Entity;
class GeneratedIntegerIdEntity implements IntegerIdEntityInterface
{
/** @var int */
private $id;
/**
* @return int
*/
public function getId()
return $this->id;
}
* @return bool
public function isPersisted()
return null !== $this->id;