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 DescriptionString
{
/** @var string */
protected $description;
/**
* @return string
*/
public function getDescription(): string
return $this->description;
}
* @param string $description
*
* @return $this
public function setDescription(string $description): self
$this->description = $description;
return $this;