for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MrPrompt\ShipmentCommon\Base;
/**
*
* @author Thiago Paes <[email protected]>
*/
class Customer extends Person
{
* @var int
private $code;
private $identityNumber;
* @var bool
private $helpfulMaturity;
private $workingDays;
* @return int
public function getCode(): int
return $this->code;
}
* @param int $code
public function setCode(int $code)
$this->code = $code;
public function getIdentityNumber(): int
return $this->identityNumber;
* @param int $identityNumber
public function setIdentityNumber(int $identityNumber)
$this->identityNumber = $identityNumber;
* @return mixed
public function getHelpfulMaturity(): bool
return $this->helpfulMaturity;
* @param boolean $helpfulMaturity
public function setHelpfulMaturity(bool $helpfulMaturity = true)
$this->helpfulMaturity = $helpfulMaturity;
public function getWorkingDays(): int
return $this->workingDays;
* @param int $workingDays
public function setWorkingDays(int $workingDays)
$this->workingDays = $workingDays;