for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Docker\API\Model;
class ProgressDetail
{
/**
* @var mixed
*/
protected $code;
protected $message;
* @return mixed
public function getCode()
return $this->code;
}
* @param mixed $code
*
* @return self
public function setCode($code = null)
$this->code = $code;
return $this;
public function getMessage()
return $this->message;
* @param mixed $message
public function setMessage($message = null)
$this->message = $message;