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 InvoiceIdString
{
/** @var string */
protected $invoice_id;
/**
* @return string
*/
public function getInvoiceId(): string
return $this->invoice_id;
}
* @param string $invoice_id
*
* @return $this
public function setInvoiceId(string $invoice_id): self
$this->invoice_id = $invoice_id;
return $this;