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