Completed
Push — master ( c85fb7...4b358a )
by Adam
12:10
created

ProductExtraTrait::setFeatureSet()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
namespace WellCommerce\Extra;
4
5
trait ProductExtraTrait
6
{
7
    private $featureSet = null;
8
    
9
    private $features = null;
10
    
11
    public function getFeatures()
12
    {
13
        return $this->features;
14
    }
15
    
16
    public function getFeatureSet()
17
    {
18
        return $this->featureSet;
19
    }
20
    
21
    public function setFeatures($features)
22
    {
23
        $this->features = $features;
24
    }
25
    
26
    public function setFeatureSet($featureSet)
27
    {
28
        $this->featureSet = $featureSet;
29
    }
30
}
31