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 IpAddressStringNull
{
/** @var string|null */
protected $ip_address;
/**
* @return string|null
*/
public function getIpAddress(): ?string
return $this->ip_address;
}
* @param string|null $ip_address
*
* @return $this
public function setIpAddress(?string $ip_address): self
$this->ip_address = $ip_address;
return $this;