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

GetAUJobSummaryRequest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 32
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 32
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getMonth() 0 4 1
A setMonth() 0 5 1
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