for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Genkgo\Camt\DTO;
abstract class Identification
{
protected ?string $identification = null;
public function getIdentification(): ?string
return $this->identification;
}
public function setIdentification(string $identification): void
$this->identification = $identification;