for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace VasilDakov\Speedy\Service\Shipment;
/**
* Class MoneyTransferPremium.
*
* @author Vasil Dakov <[email protected]>
* @copyright 2009-2022 Neutrino.bg
* @psalm-suppress PropertyNotSetInConstructor
*/
class MoneyTransferPremium
{
private ?float $amount = null;
private ?float $amountLocal = null;
private ?string $payer = null;
* @return $this
public function setAmount(float $amount): self
$this->amount = $amount;
return $this;
}
public function getAmount(): ?float
return $this->amount;
public function setAmountLocal(float $amountLocal): self
$this->amountLocal = $amountLocal;
public function getAmountLocal(): ?float
return $this->amountLocal;
public function setPayer(string $payer): self
$this->payer = $payer;
public function getPayer(): ?string
return $this->payer;