Completed
Push — master ( a41bca...d54f6c )
by Giancarlos
02:37
created

BillResult::setCdrZip()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 5
ccs 3
cts 3
cp 1
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 1
crap 1
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: Giansalex
5
 * Date: 21/07/2017
6
 * Time: 23:12
7
 */
8
9
namespace Greenter\Model\Response;
10
11
/**
12
 * Class BillResult
13
 * @package Greenter\Model\Response
14
 */
15
class BillResult extends BaseResult
16
{
17
    /**
18
     * @var string
19
     */
20
    protected $cdrZip;
21
22
    /**
23
     * @var CdrResponse
24
     */
25
    protected $cdrResponse;
26
27
    /**
28
     * @return string
29
     */
30
    public function getCdrZip()
31
    {
32
        return $this->cdrZip;
33
    }
34
35
    /**
36
     * @param string $cdrZip
37
     * @return BillResult
38
     */
39 2
    public function setCdrZip($cdrZip)
40
    {
41 2
        $this->cdrZip = $cdrZip;
42 2
        return $this;
43
    }
44
45
    /**
46
     * @return CdrResponse
47
     */
48 2
    public function getCdrResponse()
49
    {
50 2
        return $this->cdrResponse;
51
    }
52
53
    /**
54
     * @param CdrResponse $cdrResponse
55
     * @return BillResult
56
     */
57 2
    public function setCdrResponse($cdrResponse)
58
    {
59 2
        $this->cdrResponse = $cdrResponse;
60 2
        return $this;
61
    }
62
}