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

getAllRetailsResult   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 62
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
dl 0
loc 62
rs 10
c 0
b 0
f 0
wmc 5
lcom 0
cbo 0
1
<?php
2
3
namespace SmsaSDK\Methods;
4
5
class getAllRetailsResult
6
{
7
    /**
8
     * @var string
9
     */
10
    protected $schema = null;
11
12
    /**
13
     * @var string
14
     */
15
    protected $any = null;
16
17
    /**
18
     * @param string $schema
19
     * @param string $any
20
     */
21
    public function __construct($schema = null, $any = null)
22
    {
23
        $this->schema = $schema;
24
        $this->any = $any;
25
    }
26
27
    /**
28
     * @return string
29
     */
30
    public function getSchema()
31
    {
32
        return $this->schema;
33
    }
34
35
    /**
36
     * @param string $schema
37
     *
38
     * @return \SmsaSDK\Methods\getAllRetailsResult
39
     */
40
    public function setSchema($schema)
41
    {
42
        $this->schema = $schema;
43
44
        return $this;
45
    }
46
47
    /**
48
     * @return string
49
     */
50
    public function getAny()
51
    {
52
        return $this->any;
53
    }
54
55
    /**
56
     * @param string $any
57
     *
58
     * @return \SmsaSDK\Methods\getAllRetailsResult
59
     */
60
    public function setAny($any)
61
    {
62
        $this->any = $any;
63
64
        return $this;
65
    }
66
}
67