-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathServiceConfig.php
executable file
·160 lines (140 loc) · 2.75 KB
/
ServiceConfig.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?php
/**
* Webiny Framework (http://www.webiny.com/framework)
*
* @copyright Copyright Webiny LTD
*/
namespace Webiny\Component\ServiceManager;
use Webiny\Component\StdLib\StdLibTrait;
/**
* ServiceConfig class contains compiled service config and serves as a parameter for ServiceCreator when constructing services.
*
* @package Webiny\Component\ServiceManager
*/
class ServiceConfig
{
use StdLibTrait;
private $class = null;
private $arguments = null;
private $calls = null;
private $scope = ServiceScope::CONTAINER;
private $factory = null;
private $static = true;
private $method = null;
private $methodArguments = null;
/**
* @param null $calls
*/
public function setCalls($calls)
{
$this->calls = $calls;
}
/**
* @param null $class
*/
public function setClass($class)
{
$this->class = $class;
}
/**
* @param null $factory
*/
public function setFactory($factory)
{
$this->factory = $factory;
}
/**
* @return null|FactoryArgument
*/
public function getFactory()
{
return $this->factory;
}
/**
* @param null $method
*/
public function setMethod($method)
{
$this->method = $method;
}
/**
* @return null
*/
public function getMethod()
{
return $this->method;
}
/**
* @param null $methodArguments
*/
public function setMethodArguments($methodArguments)
{
$this->methodArguments = $methodArguments;
}
/**
* @return null
*/
public function getMethodArguments()
{
return $this->methodArguments;
}
/**
* @param boolean $static
*/
public function setStatic($static)
{
$this->static = $static;
}
/**
* @return boolean
*/
public function getStatic()
{
return $this->static;
}
/**
* @param null $arguments
*/
public function setArguments($arguments)
{
$this->arguments = $arguments;
}
/**
* @return mixed
*/
public function getArguments()
{
return $this->arguments;
}
/**
* @param string $scope
*/
public function setScope($scope)
{
if ($this->isNull($scope) || !ServiceScope::exists($scope)) {
$scope = ServiceScope::CONTAINER;
}
$this->scope = $scope;
}
/**
* @return mixed
*/
public function getScope()
{
return $this->scope;
}
/**
* @return mixed
*/
public function getCalls()
{
return $this->calls;
}
/**
* @return mixed
*/
public function getClass()
{
return $this->class;
}
}