ShopExtraTrait::setInvoiceProcessor()   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\AppBundle\Entity;
4
5
trait ShopExtraTrait {
6
7
	protected $facebookConnectAppId = null;
8
9
	protected $facebookConnectAppSecret = null;
10
11
	protected $facebookConnectEnabled = null;
12
13
	protected $googleConnectAppId = null;
14
15
	protected $googleConnectAppSecret = null;
16
17
	protected $googleConnectEnabled = null;
18
19
	protected $invoiceMaturity = null;
20
21
	protected $invoiceProcessor = null;
22
23
	public function getFacebookConnectAppId() {
24
		return $this->facebookConnectAppId;
25
	}
26
27
	public function getFacebookConnectAppSecret() {
28
		return $this->facebookConnectAppSecret;
29
	}
30
31
	public function getFacebookConnectEnabled() {
32
		return $this->facebookConnectEnabled;
33
	}
34
35
	public function getGoogleConnectAppId() {
36
		return $this->googleConnectAppId;
37
	}
38
39
	public function getGoogleConnectAppSecret() {
40
		return $this->googleConnectAppSecret;
41
	}
42
43
	public function getGoogleConnectEnabled() {
44
		return $this->googleConnectEnabled;
45
	}
46
47
	public function getInvoiceMaturity() {
48
		return $this->invoiceMaturity;
49
	}
50
51
	public function getInvoiceProcessor() {
52
		return $this->invoiceProcessor;
53
	}
54
55
	public function setFacebookConnectAppId($facebookConnectAppId) {
56
		$this->facebookConnectAppId = $facebookConnectAppId;
57
	}
58
59
	public function setFacebookConnectAppSecret($facebookConnectAppSecret) {
60
		$this->facebookConnectAppSecret = $facebookConnectAppSecret;
61
	}
62
63
	public function setFacebookConnectEnabled($facebookConnectEnabled) {
64
		$this->facebookConnectEnabled = $facebookConnectEnabled;
65
	}
66
67
	public function setGoogleConnectAppId($googleConnectAppId) {
68
		$this->googleConnectAppId = $googleConnectAppId;
69
	}
70
71
	public function setGoogleConnectAppSecret($googleConnectAppSecret) {
72
		$this->googleConnectAppSecret = $googleConnectAppSecret;
73
	}
74
75
	public function setGoogleConnectEnabled($googleConnectEnabled) {
76
		$this->googleConnectEnabled = $googleConnectEnabled;
77
	}
78
79
	public function setInvoiceMaturity($invoiceMaturity) {
80
		$this->invoiceMaturity = $invoiceMaturity;
81
	}
82
83
	public function setInvoiceProcessor($invoiceProcessor) {
84
		$this->invoiceProcessor = $invoiceProcessor;
85
	}
86
}