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 CreatedDateIsoString
{
/** @var string */
protected $created_date_iso;
/**
* @return string
*/
public function getCreatedDateIso(): string
return $this->created_date_iso;
}
* @param string $created_date_iso
*
* @return $this
public function setCreatedDateIso(string $created_date_iso): self
$this->created_date_iso = $created_date_iso;
return $this;