for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MrPrompt\ShipmentCommon\Base;
/**
* Client
*
* @author Thiago Paes <[email protected]>
*/
class Client
{
* @var int
private $code;
* @param int $code
public function __construct(int $code = 0)
$this->code = $code;
}
* @return int
public function getCode(): int
return $this->code;
public function setCode(int $code)