Completed
Pull Request — master (#173)
by
unknown
27:02
created

GetAUJobSummaryRequest::getMonth()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace net\authorize\api\contract\v1;
4
5
/**
6
 * Class representing GetAUJobSummaryRequest
7
 */
8
class GetAUJobSummaryRequest extends ANetApiRequestType
9
{
10
11
    /**
12
     * @property string $month
13
     */
14
    private $month = null;
15
16
    /**
17
     * Gets as month
18
     *
19
     * @return string
20
     */
21
    public function getMonth()
22
    {
23
        return $this->month;
24
    }
25
26
    /**
27
     * Sets a new month
28
     *
29
     * @param string $month
30
     * @return self
31
     */
32
    public function setMonth($month)
33
    {
34
        $this->month = $month;
35
        return $this;
36
    }
37
38
39
}
40
41