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 ShipmentPriceAmount.
*
* @author Vasil Dakov <[email protected]>
* @copyright 2009-2022 Neutrino.bg
* @version 1.0
*/
class ShipmentPriceAmount
{
private ?float $amount = null;
private ?float $percent = null;
private ?float $vatPercent = null;
public function getAmount(): ?float
return $this->amount;
}
public function setAmount(float $amount): void
$this->amount = $amount;
public function getPercent(): ?float
return $this->percent;
public function setPercent(float $percent): void
$this->percent = $percent;
public function getVatPercent(): ?float
return $this->vatPercent;
public function setVatPercent(float $vatPercent): void
$this->vatPercent = $vatPercent;