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;
class ProprietaryReference
{
private ?string $type;
private ?string $reference;
public function __construct(?string $type, ?string $reference)
$this->type = $type;
$this->reference = $reference;
}
public function getType(): ?string
return $this->type;
public function getReference(): ?string
return $this->reference;