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 AssignedIntegerIdEntity implements IntegerIdEntityInterface
{
/** @var int */
private $id;
* {@inheritdoc}
public function getId(): ?int
return $this->id;
}
public function setId(int $id): void
$this->id = $id;