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 BillResult
* @package Greenter\Model\Response
class BillResult extends BaseResult
{
* @var string
protected $cdrZip;
* @var CdrResponse
protected $cdrResponse;
* @return string
public function getCdrZip()
return $this->cdrZip;
}
* @param string $cdrZip
* @return BillResult
public function setCdrZip($cdrZip)
$this->cdrZip = $cdrZip;
return $this;
* @return CdrResponse
public function getCdrResponse()
return $this->cdrResponse;
* @param CdrResponse $cdrResponse
public function setCdrResponse($cdrResponse)
$this->cdrResponse = $cdrResponse;