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 NonceString
{
/** @var string */
protected $nonce;
/**
* @return string
*/
public function getNonce(): string
return $this->nonce;
}
* @param string $nonce
*
* @return $this
public function setNonce(string $nonce): self
$this->nonce = $nonce;
return $this;