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;
use Money\Money;
class ChargesRecord
{
private Money $amount;
private bool $chargesIncludedIndicator = false;
private string $identification;
public function getAmount(): Money
return $this->amount;
}
public function setAmount(Money $money): void
$this->amount = $money;
public function getChargesIncludedIndicator(): bool
return $this->chargesIncludedIndicator;
public function setChargesIncludedIndicator(bool $chargesIncludedIndicator): void
$this->chargesIncludedIndicator = $chargesIncludedIndicator;
public function getIdentification(): string
return $this->identification;
public function setIdentification(string $identification): void
$this->identification = $identification;