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
* @version 1.0
*/
class MoneyTransferPremium
{
* @var float
private float $amount;
private float $amountLocal;
* @var string
private string $payer;
* @param float $amount
* @return $this
public function setAmount(float $amount): self
$this->amount = $amount;
return $this;
}
* @return float
public function getAmount(): float
return $this->amount;
* @param float $amountLocal
public function setAmountLocal(float $amountLocal): self
$this->amountLocal = $amountLocal;
public function getAmountLocal(): float
return $this->amountLocal;
* @param string $payer
public function setPayer(string $payer): self
$this->payer = $payer;
* @return string
public function getPayer(): string
return $this->payer;