for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types = 1);
namespace Korobovn\CloudPayments\Message\Traits\ModelField;
trait PaymentAmountFloat
{
/** @var float */
protected $payment_amount;
/**
* @return float
*/
public function getPaymentAmount(): float
return $this->payment_amount;
}
* @param float $payment_amount
*
* @return $this
public function setPaymentAmount(float $payment_amount): self
$this->payment_amount = $payment_amount;
return $this;