for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Redbox\Twitch;
class Error {
/**
* @var string
*/
protected $error;
* @var int
protected $status;
protected $message;
* @return string
public function getError()
{
return $this->error;
}
* @param string $error
public function setError($error)
$this->error = $error;
* @return int
public function getStatus()
return $this->status;
* @param int $status
public function setStatus($status)
$this->status = $status;
public function getMessage()
return $this->message;
* @param string $message
public function setMessage($message)
$this->message = $message;