for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Genkgo\Camt\DTO;
abstract class Identification
{
/**
* @var string|null
*/
protected $identification;
* @return string|null
public function getIdentification()
return $this->identification;
}
* @param string $identification
public function setIdentification($identification)
$this->identification = $identification;