getScreenPopData()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
1
<?php
2
3
namespace SForce\Wsdl;
4
5
class DescribeSoftphoneScreenPopOption
6
{
7
    /**
8
     * @var string
9
     */
10
    protected $matchType = null;
11
12
    /**
13
     * @var string
14
     */
15
    protected $screenPopData = null;
16
17
    /**
18
     * @var string
19
     */
20
    protected $screenPopType = null;
21
22
    /**
23
     * @param string $matchType
24
     * @param string $screenPopData
25
     * @param string $screenPopType
26
     */
27
    public function __construct($matchType = null, $screenPopData = null, $screenPopType = null)
28
    {
29
        $this->matchType = $matchType;
30
        $this->screenPopData = $screenPopData;
31
        $this->screenPopType = $screenPopType;
32
    }
33
34
    /**
35
     * @return string
36
     */
37
    public function getMatchType()
38
    {
39
        return $this->matchType;
40
    }
41
42
    /**
43
     * @param string $matchType
44
     * @return \SForce\Wsdl\DescribeSoftphoneScreenPopOption
45
     */
46
    public function setMatchType($matchType)
47
    {
48
        $this->matchType = $matchType;
49
        return $this;
50
    }
51
52
    /**
53
     * @return string
54
     */
55
    public function getScreenPopData()
56
    {
57
        return $this->screenPopData;
58
    }
59
60
    /**
61
     * @param string $screenPopData
62
     * @return \SForce\Wsdl\DescribeSoftphoneScreenPopOption
63
     */
64
    public function setScreenPopData($screenPopData)
65
    {
66
        $this->screenPopData = $screenPopData;
67
        return $this;
68
    }
69
70
    /**
71
     * @return string
72
     */
73
    public function getScreenPopType()
74
    {
75
        return $this->screenPopType;
76
    }
77
78
    /**
79
     * @param string $screenPopType
80
     * @return \SForce\Wsdl\DescribeSoftphoneScreenPopOption
81
     */
82
    public function setScreenPopType($screenPopType)
83
    {
84
        $this->screenPopType = $screenPopType;
85
        return $this;
86
    }
87
}
88