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 CardExpDateString
{
/** @var string */
protected $card_exp_date;
/**
* @return string
*/
public function getCardExpDate(): string
return $this->card_exp_date;
}
* @param string $card_exp_date
*
* @return $this
public function setCardExpDate(string $card_exp_date): self
$this->card_exp_date = $card_exp_date;
return $this;