Total Complexity | 5 |
Total Lines | 56 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class DescribeGlobalTheme |
||
6 | { |
||
7 | /** |
||
8 | * @var DescribeGlobalResult |
||
9 | */ |
||
10 | protected $global = null; |
||
11 | |||
12 | /** |
||
13 | * @var DescribeThemeResult |
||
14 | */ |
||
15 | protected $theme = null; |
||
16 | |||
17 | /** |
||
18 | * @param DescribeGlobalResult $global |
||
19 | * @param DescribeThemeResult $theme |
||
20 | */ |
||
21 | public function __construct($global = null, $theme = null) |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @return DescribeGlobalResult |
||
29 | */ |
||
30 | public function getGlobal() |
||
31 | { |
||
32 | return $this->global; |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * @param DescribeGlobalResult $global |
||
37 | * @return \SForce\Wsdl\DescribeGlobalTheme |
||
38 | */ |
||
39 | public function setGlobal($global) |
||
40 | { |
||
41 | $this->global = $global; |
||
42 | return $this; |
||
43 | } |
||
44 | |||
45 | /** |
||
46 | * @return DescribeThemeResult |
||
47 | */ |
||
48 | public function getTheme() |
||
49 | { |
||
50 | return $this->theme; |
||
51 | } |
||
52 | |||
53 | /** |
||
54 | * @param DescribeThemeResult $theme |
||
55 | * @return \SForce\Wsdl\DescribeGlobalTheme |
||
56 | */ |
||
57 | public function setTheme($theme) |
||
61 | } |
||
62 | } |
||
63 |