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 StatusString
{
/** @var string */
protected $status;
/**
* @return string
*/
public function getStatus(): string
return $this->status;
}
* @param string $status
*
* @return $this
public function setStatus(string $status): self
$this->status = $status;
return $this;