Total Complexity | 3 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class CustomLinkComponent extends DescribeLayoutComponent |
||
6 | { |
||
7 | /** |
||
8 | * @var DescribeLayoutButton |
||
9 | */ |
||
10 | protected $customLink = null; |
||
11 | |||
12 | /** |
||
13 | * @param int $displayLines |
||
14 | * @param int $tabOrder |
||
15 | * @param layoutComponentType $type |
||
16 | * @param DescribeLayoutButton $customLink |
||
17 | */ |
||
18 | public function __construct($displayLines = null, $tabOrder = null, $type = null, $customLink = null) |
||
19 | { |
||
20 | parent::__construct($displayLines, $tabOrder, $type); |
||
21 | $this->customLink = $customLink; |
||
22 | } |
||
23 | |||
24 | /** |
||
25 | * @return DescribeLayoutButton |
||
26 | */ |
||
27 | public function getCustomLink() |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * @param DescribeLayoutButton $customLink |
||
34 | * @return \SForce\Wsdl\CustomLinkComponent |
||
35 | */ |
||
36 | public function setCustomLink($customLink) |
||
42 |