for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: Giansalex
* Date: 21/07/2017
* Time: 23:12
*/
namespace Greenter\Model\Response;
* Class CdrResponse
* @package Greenter\Model\Response
class CdrResponse
{
* @var string
protected $id;
protected $code;
protected $description;
* @var string[]
protected $note;
* @return string
public function getId()
return $this->id;
}
* @param string $id
* @return CdrResponse
public function setId($id)
$this->id = $id;
return $this;
public function getCode()
return $this->code;
* @param string $code
public function setCode($code)
$this->code = $code;
public function getDescription()
return $this->description;
* @param string $description
public function setDescription($description)
$this->description = $description;
* @return string[]
public function getNote()
return $this->note;
* @param string[] $note
public function setNote($note)
$this->note = $note;