getIncludeOnlyEntitiesWithTabs()   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 describeSearchableEntities
6
{
7
    /**
8
     * @var boolean
9
     */
10
    protected $includeOnlyEntitiesWithTabs = null;
11
12
    /**
13
     * @param boolean $includeOnlyEntitiesWithTabs
14
     */
15
    public function __construct($includeOnlyEntitiesWithTabs = null)
16
    {
17
        $this->includeOnlyEntitiesWithTabs = $includeOnlyEntitiesWithTabs;
18
    }
19
20
    /**
21
     * @return boolean
22
     */
23
    public function getIncludeOnlyEntitiesWithTabs()
24
    {
25
        return $this->includeOnlyEntitiesWithTabs;
26
    }
27
28
    /**
29
     * @param boolean $includeOnlyEntitiesWithTabs
30
     * @return \SForce\Wsdl\describeSearchableEntities
31
     */
32
    public function setIncludeOnlyEntitiesWithTabs($includeOnlyEntitiesWithTabs)
33
    {
34
        $this->includeOnlyEntitiesWithTabs = $includeOnlyEntitiesWithTabs;
35
        return $this;
36
    }
37
}
38