ProductExtraTrait::setFeatures()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
namespace WellCommerce\Extra\CatalogBundle\Entity;
4
5
trait ProductExtraTrait {
6
7
	protected $enableReviews = null;
8
9
	protected $featureSet = null;
10
11
	protected $features = null;
12
13
	protected $similarProducts = null;
14
15
	public function getEnableReviews() {
16
		return $this->enableReviews;
17
	}
18
19
	public function getFeatures() {
20
		return $this->features;
21
	}
22
23
	public function getFeatureSet() {
24
		return $this->featureSet;
25
	}
26
27
	public function getSimilarProducts() {
28
		return $this->similarProducts;
29
	}
30
31
	public function setEnableReviews($enableReviews) {
32
		$this->enableReviews = $enableReviews;
33
	}
34
35
	public function setFeatures($features) {
36
		$this->features = $features;
37
	}
38
39
	public function setFeatureSet($featureSet) {
40
		$this->featureSet = $featureSet;
41
	}
42
43
	public function setSimilarProducts($similarProducts) {
44
		$this->similarProducts = $similarProducts;
45
	}
46
}