GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Branch master (77762a)
by Mohannad
13:57 queued 03:59
created

getRTLRetailsResponse   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 35
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 35
rs 10
c 0
b 0
f 0
wmc 3
lcom 0
cbo 0
1
<?php
2
3
namespace SmsaSDK\Methods;
4
5
class getRTLRetailsResponse
6
{
7
    /**
8
     * @var getRTLRetailsResult
9
     */
10
    protected $getRTLRetailsResult = null;
11
12
    /**
13
     * @param getRTLRetailsResult $getRTLRetailsResult
14
     */
15
    public function __construct($getRTLRetailsResult = null)
16
    {
17
        $this->getRTLRetailsResult = $getRTLRetailsResult;
18
    }
19
20
    /**
21
     * @return getRTLRetailsResult
22
     */
23
    public function getGetRTLRetailsResult()
24
    {
25
        return $this->getRTLRetailsResult;
26
    }
27
28
    /**
29
     * @param getRTLRetailsResult $getRTLRetailsResult
30
     *
31
     * @return \SmsaSDK\Methods\getRTLRetailsResponse
32
     */
33
    public function setGetRTLRetailsResult($getRTLRetailsResult)
34
    {
35
        $this->getRTLRetailsResult = $getRTLRetailsResult;
36
37
        return $this;
38
    }
39
}
40