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 UnstructuredRemittanceInformation
{
private string $message;
public function __construct(string $message)
$this->message = $message;
}
public function getMessage(): string
return $this->message;
public function setMessage(string $message): void