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 NameString
{
/** @var string */
protected $name;
/**
* @return string
*/
public function getName(): string
return $this->name;
}
* @param string $name
*
* @return $this
public function setName(string $name): self
$this->name = $name;
return $this;