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 PaymentCurrencyString
{
/** @var string */
protected $payment_currency;
/**
* @return string
*/
public function getPaymentCurrency(): string
return $this->payment_currency;
}
* @param string $payment_currency
*
* @return $this
public function setPaymentCurrency(string $payment_currency): self
$this->payment_currency = $payment_currency;
return $this;