@@ -15,218 +15,218 @@ |
||
15 | 15 | { |
16 | 16 | |
17 | 17 | |
18 | - /** |
|
19 | - * @var NoticeInterface[] $information |
|
20 | - */ |
|
21 | - private $information = array(); |
|
22 | - |
|
23 | - |
|
24 | - /** |
|
25 | - * @var NoticeInterface[] $attention |
|
26 | - */ |
|
27 | - private $attention = array(); |
|
28 | - |
|
29 | - |
|
30 | - /** |
|
31 | - * @var NoticeInterface[] $error |
|
32 | - */ |
|
33 | - private $error = array(); |
|
34 | - |
|
35 | - |
|
36 | - /** |
|
37 | - * @var NoticeInterface[] $success |
|
38 | - */ |
|
39 | - private $success = array(); |
|
40 | - |
|
41 | - |
|
42 | - /** |
|
43 | - * @param string $notice |
|
44 | - * @param bool $dismissible |
|
45 | - * @param string $file |
|
46 | - * @param string $func |
|
47 | - * @param string $line |
|
48 | - * @throws InvalidDataTypeException |
|
49 | - */ |
|
50 | - public function addInformation($notice, $dismissible = true, $file = '', $func = '', $line = '') |
|
51 | - { |
|
52 | - $this->information[] = new Notice( |
|
53 | - Notice::INFORMATION, |
|
54 | - $notice, |
|
55 | - $dismissible, |
|
56 | - $file, |
|
57 | - $func, |
|
58 | - $line |
|
59 | - ); |
|
60 | - } |
|
61 | - |
|
62 | - |
|
63 | - /** |
|
64 | - * @param string $notice |
|
65 | - * @param bool $dismissible |
|
66 | - * @param string $file |
|
67 | - * @param string $func |
|
68 | - * @param string $line |
|
69 | - * @throws InvalidDataTypeException |
|
70 | - */ |
|
71 | - public function addAttention($notice, $dismissible = true, $file = '', $func = '', $line = '') |
|
72 | - { |
|
73 | - $this->attention[] = new Notice( |
|
74 | - Notice::ATTENTION, |
|
75 | - $notice, |
|
76 | - $dismissible, |
|
77 | - $file, |
|
78 | - $func, |
|
79 | - $line |
|
80 | - ); |
|
81 | - } |
|
82 | - |
|
83 | - // phpcs:disable PEAR.Functions.ValidDefaultValue.NotAtEnd |
|
84 | - /** |
|
85 | - * @param string $notice |
|
86 | - * @param bool $dismissible |
|
87 | - * @param string $file |
|
88 | - * @param string $func |
|
89 | - * @param string $line |
|
90 | - * @throws InvalidDataTypeException |
|
91 | - */ |
|
92 | - public function addError($notice, $dismissible = true, $file, $func, $line) |
|
93 | - { |
|
94 | - $this->error[] = new Notice( |
|
95 | - Notice::ERROR, |
|
96 | - $notice, |
|
97 | - $dismissible, |
|
98 | - $file, |
|
99 | - $func, |
|
100 | - $line |
|
101 | - ); |
|
102 | - } |
|
103 | - |
|
104 | - |
|
105 | - /** |
|
106 | - * @param string $notice |
|
107 | - * @param bool $dismissible |
|
108 | - * @param string $file |
|
109 | - * @param string $func |
|
110 | - * @param string $line |
|
111 | - * @throws InvalidDataTypeException |
|
112 | - */ |
|
113 | - public function addSuccess($notice, $dismissible = true, $file = '', $func = '', $line = '') |
|
114 | - { |
|
115 | - $this->success[] = new Notice( |
|
116 | - Notice::SUCCESS, |
|
117 | - $notice, |
|
118 | - $dismissible, |
|
119 | - $file, |
|
120 | - $func, |
|
121 | - $line |
|
122 | - ); |
|
123 | - } |
|
124 | - |
|
125 | - |
|
126 | - /** |
|
127 | - * @return boolean |
|
128 | - */ |
|
129 | - public function hasInformation() |
|
130 | - { |
|
131 | - return ! empty($this->information); |
|
132 | - } |
|
133 | - |
|
134 | - |
|
135 | - /** |
|
136 | - * @return boolean |
|
137 | - */ |
|
138 | - public function hasAttention() |
|
139 | - { |
|
140 | - return ! empty($this->attention); |
|
141 | - } |
|
142 | - |
|
143 | - |
|
144 | - /** |
|
145 | - * @return boolean |
|
146 | - */ |
|
147 | - public function hasError() |
|
148 | - { |
|
149 | - return ! empty($this->error); |
|
150 | - } |
|
151 | - |
|
152 | - |
|
153 | - /** |
|
154 | - * @return boolean |
|
155 | - */ |
|
156 | - public function hasSuccess() |
|
157 | - { |
|
158 | - return ! empty($this->success); |
|
159 | - } |
|
160 | - |
|
161 | - |
|
162 | - /** |
|
163 | - * @return int |
|
164 | - */ |
|
165 | - public function countInformation() |
|
166 | - { |
|
167 | - return count($this->information); |
|
168 | - } |
|
169 | - |
|
170 | - |
|
171 | - /** |
|
172 | - * @return int |
|
173 | - */ |
|
174 | - public function countAttention() |
|
175 | - { |
|
176 | - return count($this->attention); |
|
177 | - } |
|
178 | - |
|
179 | - |
|
180 | - /** |
|
181 | - * @return int |
|
182 | - */ |
|
183 | - public function countError() |
|
184 | - { |
|
185 | - return count($this->error); |
|
186 | - } |
|
187 | - |
|
188 | - |
|
189 | - /** |
|
190 | - * @return int |
|
191 | - */ |
|
192 | - public function countSuccess() |
|
193 | - { |
|
194 | - return count($this->success); |
|
195 | - } |
|
196 | - |
|
197 | - |
|
198 | - /** |
|
199 | - * @return NoticeInterface[] |
|
200 | - */ |
|
201 | - public function getInformation() |
|
202 | - { |
|
203 | - return $this->information; |
|
204 | - } |
|
205 | - |
|
206 | - |
|
207 | - /** |
|
208 | - * @return NoticeInterface[] |
|
209 | - */ |
|
210 | - public function getAttention() |
|
211 | - { |
|
212 | - return $this->attention; |
|
213 | - } |
|
214 | - |
|
215 | - |
|
216 | - /** |
|
217 | - * @return NoticeInterface[] |
|
218 | - */ |
|
219 | - public function getError() |
|
220 | - { |
|
221 | - return $this->error; |
|
222 | - } |
|
223 | - |
|
224 | - |
|
225 | - /** |
|
226 | - * @return NoticeInterface[] |
|
227 | - */ |
|
228 | - public function getSuccess() |
|
229 | - { |
|
230 | - return $this->success; |
|
231 | - } |
|
18 | + /** |
|
19 | + * @var NoticeInterface[] $information |
|
20 | + */ |
|
21 | + private $information = array(); |
|
22 | + |
|
23 | + |
|
24 | + /** |
|
25 | + * @var NoticeInterface[] $attention |
|
26 | + */ |
|
27 | + private $attention = array(); |
|
28 | + |
|
29 | + |
|
30 | + /** |
|
31 | + * @var NoticeInterface[] $error |
|
32 | + */ |
|
33 | + private $error = array(); |
|
34 | + |
|
35 | + |
|
36 | + /** |
|
37 | + * @var NoticeInterface[] $success |
|
38 | + */ |
|
39 | + private $success = array(); |
|
40 | + |
|
41 | + |
|
42 | + /** |
|
43 | + * @param string $notice |
|
44 | + * @param bool $dismissible |
|
45 | + * @param string $file |
|
46 | + * @param string $func |
|
47 | + * @param string $line |
|
48 | + * @throws InvalidDataTypeException |
|
49 | + */ |
|
50 | + public function addInformation($notice, $dismissible = true, $file = '', $func = '', $line = '') |
|
51 | + { |
|
52 | + $this->information[] = new Notice( |
|
53 | + Notice::INFORMATION, |
|
54 | + $notice, |
|
55 | + $dismissible, |
|
56 | + $file, |
|
57 | + $func, |
|
58 | + $line |
|
59 | + ); |
|
60 | + } |
|
61 | + |
|
62 | + |
|
63 | + /** |
|
64 | + * @param string $notice |
|
65 | + * @param bool $dismissible |
|
66 | + * @param string $file |
|
67 | + * @param string $func |
|
68 | + * @param string $line |
|
69 | + * @throws InvalidDataTypeException |
|
70 | + */ |
|
71 | + public function addAttention($notice, $dismissible = true, $file = '', $func = '', $line = '') |
|
72 | + { |
|
73 | + $this->attention[] = new Notice( |
|
74 | + Notice::ATTENTION, |
|
75 | + $notice, |
|
76 | + $dismissible, |
|
77 | + $file, |
|
78 | + $func, |
|
79 | + $line |
|
80 | + ); |
|
81 | + } |
|
82 | + |
|
83 | + // phpcs:disable PEAR.Functions.ValidDefaultValue.NotAtEnd |
|
84 | + /** |
|
85 | + * @param string $notice |
|
86 | + * @param bool $dismissible |
|
87 | + * @param string $file |
|
88 | + * @param string $func |
|
89 | + * @param string $line |
|
90 | + * @throws InvalidDataTypeException |
|
91 | + */ |
|
92 | + public function addError($notice, $dismissible = true, $file, $func, $line) |
|
93 | + { |
|
94 | + $this->error[] = new Notice( |
|
95 | + Notice::ERROR, |
|
96 | + $notice, |
|
97 | + $dismissible, |
|
98 | + $file, |
|
99 | + $func, |
|
100 | + $line |
|
101 | + ); |
|
102 | + } |
|
103 | + |
|
104 | + |
|
105 | + /** |
|
106 | + * @param string $notice |
|
107 | + * @param bool $dismissible |
|
108 | + * @param string $file |
|
109 | + * @param string $func |
|
110 | + * @param string $line |
|
111 | + * @throws InvalidDataTypeException |
|
112 | + */ |
|
113 | + public function addSuccess($notice, $dismissible = true, $file = '', $func = '', $line = '') |
|
114 | + { |
|
115 | + $this->success[] = new Notice( |
|
116 | + Notice::SUCCESS, |
|
117 | + $notice, |
|
118 | + $dismissible, |
|
119 | + $file, |
|
120 | + $func, |
|
121 | + $line |
|
122 | + ); |
|
123 | + } |
|
124 | + |
|
125 | + |
|
126 | + /** |
|
127 | + * @return boolean |
|
128 | + */ |
|
129 | + public function hasInformation() |
|
130 | + { |
|
131 | + return ! empty($this->information); |
|
132 | + } |
|
133 | + |
|
134 | + |
|
135 | + /** |
|
136 | + * @return boolean |
|
137 | + */ |
|
138 | + public function hasAttention() |
|
139 | + { |
|
140 | + return ! empty($this->attention); |
|
141 | + } |
|
142 | + |
|
143 | + |
|
144 | + /** |
|
145 | + * @return boolean |
|
146 | + */ |
|
147 | + public function hasError() |
|
148 | + { |
|
149 | + return ! empty($this->error); |
|
150 | + } |
|
151 | + |
|
152 | + |
|
153 | + /** |
|
154 | + * @return boolean |
|
155 | + */ |
|
156 | + public function hasSuccess() |
|
157 | + { |
|
158 | + return ! empty($this->success); |
|
159 | + } |
|
160 | + |
|
161 | + |
|
162 | + /** |
|
163 | + * @return int |
|
164 | + */ |
|
165 | + public function countInformation() |
|
166 | + { |
|
167 | + return count($this->information); |
|
168 | + } |
|
169 | + |
|
170 | + |
|
171 | + /** |
|
172 | + * @return int |
|
173 | + */ |
|
174 | + public function countAttention() |
|
175 | + { |
|
176 | + return count($this->attention); |
|
177 | + } |
|
178 | + |
|
179 | + |
|
180 | + /** |
|
181 | + * @return int |
|
182 | + */ |
|
183 | + public function countError() |
|
184 | + { |
|
185 | + return count($this->error); |
|
186 | + } |
|
187 | + |
|
188 | + |
|
189 | + /** |
|
190 | + * @return int |
|
191 | + */ |
|
192 | + public function countSuccess() |
|
193 | + { |
|
194 | + return count($this->success); |
|
195 | + } |
|
196 | + |
|
197 | + |
|
198 | + /** |
|
199 | + * @return NoticeInterface[] |
|
200 | + */ |
|
201 | + public function getInformation() |
|
202 | + { |
|
203 | + return $this->information; |
|
204 | + } |
|
205 | + |
|
206 | + |
|
207 | + /** |
|
208 | + * @return NoticeInterface[] |
|
209 | + */ |
|
210 | + public function getAttention() |
|
211 | + { |
|
212 | + return $this->attention; |
|
213 | + } |
|
214 | + |
|
215 | + |
|
216 | + /** |
|
217 | + * @return NoticeInterface[] |
|
218 | + */ |
|
219 | + public function getError() |
|
220 | + { |
|
221 | + return $this->error; |
|
222 | + } |
|
223 | + |
|
224 | + |
|
225 | + /** |
|
226 | + * @return NoticeInterface[] |
|
227 | + */ |
|
228 | + public function getSuccess() |
|
229 | + { |
|
230 | + return $this->success; |
|
231 | + } |
|
232 | 232 | } |
@@ -15,59 +15,59 @@ |
||
15 | 15 | class CoffeeMill |
16 | 16 | { |
17 | 17 | |
18 | - /** |
|
19 | - * @var CoffeeShop $coffee_shop |
|
20 | - */ |
|
21 | - private static $coffee_shop; |
|
18 | + /** |
|
19 | + * @var CoffeeShop $coffee_shop |
|
20 | + */ |
|
21 | + private static $coffee_shop; |
|
22 | 22 | |
23 | 23 | |
24 | - /** |
|
25 | - * @return mixed |
|
26 | - */ |
|
27 | - public static function getCoffeeShop() |
|
28 | - { |
|
29 | - return self::$coffee_shop; |
|
30 | - } |
|
24 | + /** |
|
25 | + * @return mixed |
|
26 | + */ |
|
27 | + public static function getCoffeeShop() |
|
28 | + { |
|
29 | + return self::$coffee_shop; |
|
30 | + } |
|
31 | 31 | |
32 | 32 | |
33 | - /** |
|
34 | - * @param CoffeeShop $coffee_shop |
|
35 | - */ |
|
36 | - public static function setCoffeeShop(CoffeeShop $coffee_shop) |
|
37 | - { |
|
38 | - self::$coffee_shop = $coffee_shop; |
|
39 | - } |
|
33 | + /** |
|
34 | + * @param CoffeeShop $coffee_shop |
|
35 | + */ |
|
36 | + public static function setCoffeeShop(CoffeeShop $coffee_shop) |
|
37 | + { |
|
38 | + self::$coffee_shop = $coffee_shop; |
|
39 | + } |
|
40 | 40 | |
41 | 41 | |
42 | - /** |
|
43 | - * @param string $identifier |
|
44 | - * @param array $arguments |
|
45 | - * @param string $type |
|
46 | - * @return mixed |
|
47 | - * @throws ServiceNotFoundException |
|
48 | - */ |
|
49 | - public static function createNew($identifier, $arguments = array(), $type = CoffeeMaker::BREW_NEW) |
|
50 | - { |
|
51 | - return self::$coffee_shop->brew($identifier, $arguments, $type); |
|
52 | - } |
|
42 | + /** |
|
43 | + * @param string $identifier |
|
44 | + * @param array $arguments |
|
45 | + * @param string $type |
|
46 | + * @return mixed |
|
47 | + * @throws ServiceNotFoundException |
|
48 | + */ |
|
49 | + public static function createNew($identifier, $arguments = array(), $type = CoffeeMaker::BREW_NEW) |
|
50 | + { |
|
51 | + return self::$coffee_shop->brew($identifier, $arguments, $type); |
|
52 | + } |
|
53 | 53 | |
54 | 54 | |
55 | - /** |
|
56 | - * IMPORTANT!!! |
|
57 | - * Usage of this method is discouraged as it promotes service location. |
|
58 | - * It's current use is only as a stop gap measure until the CoffeeShop |
|
59 | - * Dependency Injection Container can be implemented properly for all classes. |
|
60 | - * If it is at all possible, inject your dependencies via your class constructor. |
|
61 | - * This method WILL BE DEPRECATED at some point in the near future. |
|
62 | - * |
|
63 | - * @param string $identifier |
|
64 | - * @param array $arguments |
|
65 | - * @param string $type |
|
66 | - * @return mixed |
|
67 | - * @throws ServiceNotFoundException |
|
68 | - */ |
|
69 | - public static function getService($identifier, $arguments = array(), $type = CoffeeMaker::BREW_SHARED) |
|
70 | - { |
|
71 | - return self::$coffee_shop->brew($identifier, $arguments, $type); |
|
72 | - } |
|
55 | + /** |
|
56 | + * IMPORTANT!!! |
|
57 | + * Usage of this method is discouraged as it promotes service location. |
|
58 | + * It's current use is only as a stop gap measure until the CoffeeShop |
|
59 | + * Dependency Injection Container can be implemented properly for all classes. |
|
60 | + * If it is at all possible, inject your dependencies via your class constructor. |
|
61 | + * This method WILL BE DEPRECATED at some point in the near future. |
|
62 | + * |
|
63 | + * @param string $identifier |
|
64 | + * @param array $arguments |
|
65 | + * @param string $type |
|
66 | + * @return mixed |
|
67 | + * @throws ServiceNotFoundException |
|
68 | + */ |
|
69 | + public static function getService($identifier, $arguments = array(), $type = CoffeeMaker::BREW_SHARED) |
|
70 | + { |
|
71 | + return self::$coffee_shop->brew($identifier, $arguments, $type); |
|
72 | + } |
|
73 | 73 | } |
@@ -20,51 +20,51 @@ |
||
20 | 20 | { |
21 | 21 | |
22 | 22 | |
23 | - /** |
|
24 | - * @return string |
|
25 | - */ |
|
26 | - public function type() |
|
27 | - { |
|
28 | - return CoffeeMaker::BREW_NEW; |
|
29 | - } |
|
23 | + /** |
|
24 | + * @return string |
|
25 | + */ |
|
26 | + public function type() |
|
27 | + { |
|
28 | + return CoffeeMaker::BREW_NEW; |
|
29 | + } |
|
30 | 30 | |
31 | 31 | |
32 | - /** |
|
33 | - * @param RecipeInterface $recipe |
|
34 | - * @param array $arguments |
|
35 | - * @return mixed |
|
36 | - */ |
|
37 | - public function brew(RecipeInterface $recipe, $arguments = array()) |
|
38 | - { |
|
39 | - $this->resolveClassAndFilepath($recipe); |
|
40 | - $reflector = $this->injector()->getReflectionClass($recipe->fqcn()); |
|
41 | - $method = $this->resolveInstantiationMethod($reflector); |
|
42 | - switch ($method) { |
|
43 | - case 'instance': |
|
44 | - case 'new_instance': |
|
45 | - case 'new_instance_from_db': |
|
46 | - $injector = $this->injector(); |
|
47 | - $closure = function ($arguments) use ($recipe, $reflector, $method, $injector) { |
|
48 | - return call_user_func_array( |
|
49 | - array($reflector->getName(), $method), |
|
50 | - $injector->resolveDependencies($recipe, $reflector, $arguments) |
|
51 | - ); |
|
52 | - }; |
|
53 | - break; |
|
54 | - case 'newInstance': |
|
55 | - $closure = function () use ($reflector) { |
|
56 | - return $reflector->newInstance(); |
|
57 | - }; |
|
58 | - break; |
|
59 | - case 'newInstanceArgs': |
|
60 | - default: |
|
61 | - $injector = $this->injector(); |
|
62 | - $closure = function ($arguments) use ($recipe, $reflector, $injector) { |
|
63 | - return $reflector->newInstanceArgs( |
|
64 | - $injector->resolveDependencies($recipe, $reflector, $arguments) |
|
65 | - ); |
|
66 | - }; |
|
67 | - } |
|
68 | - return $this->coffeePot()->addClosure($recipe->identifier(), $closure); |
|
69 | - } |
|
32 | + /** |
|
33 | + * @param RecipeInterface $recipe |
|
34 | + * @param array $arguments |
|
35 | + * @return mixed |
|
36 | + */ |
|
37 | + public function brew(RecipeInterface $recipe, $arguments = array()) |
|
38 | + { |
|
39 | + $this->resolveClassAndFilepath($recipe); |
|
40 | + $reflector = $this->injector()->getReflectionClass($recipe->fqcn()); |
|
41 | + $method = $this->resolveInstantiationMethod($reflector); |
|
42 | + switch ($method) { |
|
43 | + case 'instance': |
|
44 | + case 'new_instance': |
|
45 | + case 'new_instance_from_db': |
|
46 | + $injector = $this->injector(); |
|
47 | + $closure = function ($arguments) use ($recipe, $reflector, $method, $injector) { |
|
48 | + return call_user_func_array( |
|
49 | + array($reflector->getName(), $method), |
|
50 | + $injector->resolveDependencies($recipe, $reflector, $arguments) |
|
51 | + ); |
|
52 | + }; |
|
53 | + break; |
|
54 | + case 'newInstance': |
|
55 | + $closure = function () use ($reflector) { |
|
56 | + return $reflector->newInstance(); |
|
57 | + }; |
|
58 | + break; |
|
59 | + case 'newInstanceArgs': |
|
60 | + default: |
|
61 | + $injector = $this->injector(); |
|
62 | + $closure = function ($arguments) use ($recipe, $reflector, $injector) { |
|
63 | + return $reflector->newInstanceArgs( |
|
64 | + $injector->resolveDependencies($recipe, $reflector, $arguments) |
|
65 | + ); |
|
66 | + }; |
|
67 | + } |
|
68 | + return $this->coffeePot()->addClosure($recipe->identifier(), $closure); |
|
69 | + } |
|
70 | 70 | } |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | case 'new_instance': |
45 | 45 | case 'new_instance_from_db': |
46 | 46 | $injector = $this->injector(); |
47 | - $closure = function ($arguments) use ($recipe, $reflector, $method, $injector) { |
|
47 | + $closure = function($arguments) use ($recipe, $reflector, $method, $injector) { |
|
48 | 48 | return call_user_func_array( |
49 | 49 | array($reflector->getName(), $method), |
50 | 50 | $injector->resolveDependencies($recipe, $reflector, $arguments) |
@@ -52,14 +52,14 @@ discard block |
||
52 | 52 | }; |
53 | 53 | break; |
54 | 54 | case 'newInstance': |
55 | - $closure = function () use ($reflector) { |
|
55 | + $closure = function() use ($reflector) { |
|
56 | 56 | return $reflector->newInstance(); |
57 | 57 | }; |
58 | 58 | break; |
59 | 59 | case 'newInstanceArgs': |
60 | 60 | default: |
61 | 61 | $injector = $this->injector(); |
62 | - $closure = function ($arguments) use ($recipe, $reflector, $injector) { |
|
62 | + $closure = function($arguments) use ($recipe, $reflector, $injector) { |
|
63 | 63 | return $reflector->newInstanceArgs( |
64 | 64 | $injector->resolveDependencies($recipe, $reflector, $arguments) |
65 | 65 | ); |
@@ -18,43 +18,43 @@ |
||
18 | 18 | { |
19 | 19 | |
20 | 20 | |
21 | - /** |
|
22 | - * @return string |
|
23 | - */ |
|
24 | - public function type() |
|
25 | - { |
|
26 | - return CoffeeMaker::BREW_SHARED; |
|
27 | - } |
|
21 | + /** |
|
22 | + * @return string |
|
23 | + */ |
|
24 | + public function type() |
|
25 | + { |
|
26 | + return CoffeeMaker::BREW_SHARED; |
|
27 | + } |
|
28 | 28 | |
29 | 29 | |
30 | - /** |
|
31 | - * @param RecipeInterface $recipe |
|
32 | - * @param array $arguments |
|
33 | - * @return mixed |
|
34 | - */ |
|
35 | - public function brew(RecipeInterface $recipe, $arguments = array()) |
|
36 | - { |
|
37 | - $this->resolveClassAndFilepath($recipe); |
|
38 | - $reflector = $this->injector()->getReflectionClass($recipe->fqcn()); |
|
39 | - $method = $this->resolveInstantiationMethod($reflector); |
|
40 | - switch ($method) { |
|
41 | - case 'instance': |
|
42 | - case 'new_instance': |
|
43 | - case 'new_instance_from_db': |
|
44 | - $service = call_user_func_array( |
|
45 | - array($reflector->getName(), $method), |
|
46 | - $this->injector()->resolveDependencies($recipe, $reflector, $arguments) |
|
47 | - ); |
|
48 | - break; |
|
49 | - case 'newInstance': |
|
50 | - $service = $reflector->newInstance(); |
|
51 | - break; |
|
52 | - case 'newInstanceArgs': |
|
53 | - default: |
|
54 | - $service = $reflector->newInstanceArgs( |
|
55 | - $this->injector()->resolveDependencies($recipe, $reflector, $arguments) |
|
56 | - ); |
|
57 | - } |
|
58 | - return $this->coffeePot()->addService($recipe->identifier(), $service); |
|
59 | - } |
|
30 | + /** |
|
31 | + * @param RecipeInterface $recipe |
|
32 | + * @param array $arguments |
|
33 | + * @return mixed |
|
34 | + */ |
|
35 | + public function brew(RecipeInterface $recipe, $arguments = array()) |
|
36 | + { |
|
37 | + $this->resolveClassAndFilepath($recipe); |
|
38 | + $reflector = $this->injector()->getReflectionClass($recipe->fqcn()); |
|
39 | + $method = $this->resolveInstantiationMethod($reflector); |
|
40 | + switch ($method) { |
|
41 | + case 'instance': |
|
42 | + case 'new_instance': |
|
43 | + case 'new_instance_from_db': |
|
44 | + $service = call_user_func_array( |
|
45 | + array($reflector->getName(), $method), |
|
46 | + $this->injector()->resolveDependencies($recipe, $reflector, $arguments) |
|
47 | + ); |
|
48 | + break; |
|
49 | + case 'newInstance': |
|
50 | + $service = $reflector->newInstance(); |
|
51 | + break; |
|
52 | + case 'newInstanceArgs': |
|
53 | + default: |
|
54 | + $service = $reflector->newInstanceArgs( |
|
55 | + $this->injector()->resolveDependencies($recipe, $reflector, $arguments) |
|
56 | + ); |
|
57 | + } |
|
58 | + return $this->coffeePot()->addService($recipe->identifier(), $service); |
|
59 | + } |
|
60 | 60 | } |
@@ -21,23 +21,23 @@ |
||
21 | 21 | class LoadOnlyCoffeeMaker extends CoffeeMaker |
22 | 22 | { |
23 | 23 | |
24 | - /** |
|
25 | - * @return string |
|
26 | - */ |
|
27 | - public function type() |
|
28 | - { |
|
29 | - return CoffeeMaker::BREW_LOAD_ONLY; |
|
30 | - } |
|
24 | + /** |
|
25 | + * @return string |
|
26 | + */ |
|
27 | + public function type() |
|
28 | + { |
|
29 | + return CoffeeMaker::BREW_LOAD_ONLY; |
|
30 | + } |
|
31 | 31 | |
32 | 32 | |
33 | - /** |
|
34 | - * @param RecipeInterface $recipe |
|
35 | - * @param array $arguments |
|
36 | - * @return mixed |
|
37 | - * @throws InvalidClassException |
|
38 | - */ |
|
39 | - public function brew(RecipeInterface $recipe, $arguments = array()) |
|
40 | - { |
|
41 | - return $this->resolveClassAndFilepath($recipe); |
|
42 | - } |
|
33 | + /** |
|
34 | + * @param RecipeInterface $recipe |
|
35 | + * @param array $arguments |
|
36 | + * @return mixed |
|
37 | + * @throws InvalidClassException |
|
38 | + */ |
|
39 | + public function brew(RecipeInterface $recipe, $arguments = array()) |
|
40 | + { |
|
41 | + return $this->resolveClassAndFilepath($recipe); |
|
42 | + } |
|
43 | 43 | } |
@@ -17,13 +17,13 @@ |
||
17 | 17 | class ProgressStepCollection extends Collection |
18 | 18 | { |
19 | 19 | |
20 | - /** |
|
21 | - * ProgressStepCollection constructor. |
|
22 | - * |
|
23 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
24 | - */ |
|
25 | - public function __construct() |
|
26 | - { |
|
27 | - parent::__construct('\EventEspresso\core\services\progress_steps\ProgressStepInterface'); |
|
28 | - } |
|
20 | + /** |
|
21 | + * ProgressStepCollection constructor. |
|
22 | + * |
|
23 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
24 | + */ |
|
25 | + public function __construct() |
|
26 | + { |
|
27 | + parent::__construct('\EventEspresso\core\services\progress_steps\ProgressStepInterface'); |
|
28 | + } |
|
29 | 29 | } |
@@ -14,19 +14,19 @@ |
||
14 | 14 | { |
15 | 15 | |
16 | 16 | |
17 | - /** |
|
18 | - * @var LoaderDecoratorInterface $loader |
|
19 | - */ |
|
20 | - protected $loader; |
|
17 | + /** |
|
18 | + * @var LoaderDecoratorInterface $loader |
|
19 | + */ |
|
20 | + protected $loader; |
|
21 | 21 | |
22 | 22 | |
23 | - /** |
|
24 | - * LoaderDecorator constructor. |
|
25 | - * |
|
26 | - * @param LoaderDecoratorInterface $loader |
|
27 | - */ |
|
28 | - public function __construct(LoaderDecoratorInterface $loader) |
|
29 | - { |
|
30 | - $this->loader = $loader; |
|
31 | - } |
|
23 | + /** |
|
24 | + * LoaderDecorator constructor. |
|
25 | + * |
|
26 | + * @param LoaderDecoratorInterface $loader |
|
27 | + */ |
|
28 | + public function __construct(LoaderDecoratorInterface $loader) |
|
29 | + { |
|
30 | + $this->loader = $loader; |
|
31 | + } |
|
32 | 32 | } |
@@ -17,43 +17,43 @@ |
||
17 | 17 | abstract class Locator implements LocatorInterface, Countable |
18 | 18 | { |
19 | 19 | |
20 | - /** |
|
21 | - * @var array $flags |
|
22 | - */ |
|
23 | - protected $flags = array(); |
|
24 | - |
|
25 | - |
|
26 | - /** |
|
27 | - * FileLocator constructor. |
|
28 | - * |
|
29 | - * @access public |
|
30 | - * @param array $flags controls how files are found and/or file data is returned |
|
31 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
32 | - */ |
|
33 | - public function __construct($flags = array()) |
|
34 | - { |
|
35 | - if (empty($flags)) { |
|
36 | - $flags = array( |
|
37 | - FilesystemIterator::SKIP_DOTS, |
|
38 | - FilesystemIterator::UNIX_PATHS, |
|
39 | - FilesystemIterator::CURRENT_AS_PATHNAME, |
|
40 | - ); |
|
41 | - } |
|
42 | - $this->setFlags($flags); |
|
43 | - } |
|
44 | - |
|
45 | - |
|
46 | - /** |
|
47 | - * @see http://php.net/manual/en/class.filesystemiterator.php#filesystemiterator.constants |
|
48 | - * @access public |
|
49 | - * @param array $flags |
|
50 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
51 | - */ |
|
52 | - public function setFlags($flags) |
|
53 | - { |
|
54 | - if (! is_array($flags)) { |
|
55 | - throw new InvalidDataTypeException('$flags', $flags, 'array'); |
|
56 | - } |
|
57 | - $this->flags = $flags; |
|
58 | - } |
|
20 | + /** |
|
21 | + * @var array $flags |
|
22 | + */ |
|
23 | + protected $flags = array(); |
|
24 | + |
|
25 | + |
|
26 | + /** |
|
27 | + * FileLocator constructor. |
|
28 | + * |
|
29 | + * @access public |
|
30 | + * @param array $flags controls how files are found and/or file data is returned |
|
31 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
32 | + */ |
|
33 | + public function __construct($flags = array()) |
|
34 | + { |
|
35 | + if (empty($flags)) { |
|
36 | + $flags = array( |
|
37 | + FilesystemIterator::SKIP_DOTS, |
|
38 | + FilesystemIterator::UNIX_PATHS, |
|
39 | + FilesystemIterator::CURRENT_AS_PATHNAME, |
|
40 | + ); |
|
41 | + } |
|
42 | + $this->setFlags($flags); |
|
43 | + } |
|
44 | + |
|
45 | + |
|
46 | + /** |
|
47 | + * @see http://php.net/manual/en/class.filesystemiterator.php#filesystemiterator.constants |
|
48 | + * @access public |
|
49 | + * @param array $flags |
|
50 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
51 | + */ |
|
52 | + public function setFlags($flags) |
|
53 | + { |
|
54 | + if (! is_array($flags)) { |
|
55 | + throw new InvalidDataTypeException('$flags', $flags, 'array'); |
|
56 | + } |
|
57 | + $this->flags = $flags; |
|
58 | + } |
|
59 | 59 | } |
@@ -51,7 +51,7 @@ |
||
51 | 51 | */ |
52 | 52 | public function setFlags($flags) |
53 | 53 | { |
54 | - if (! is_array($flags)) { |
|
54 | + if ( ! is_array($flags)) { |
|
55 | 55 | throw new InvalidDataTypeException('$flags', $flags, 'array'); |
56 | 56 | } |
57 | 57 | $this->flags = $flags; |
@@ -12,38 +12,38 @@ |
||
12 | 12 | */ |
13 | 13 | class AddressFormatter |
14 | 14 | { |
15 | - // phpcs:disable PSR1.Methods.CamelCapsMethodName.NotCamelCaps |
|
16 | - /** |
|
17 | - * @param string $address |
|
18 | - * @param string $address2 |
|
19 | - * @param string $city |
|
20 | - * @param string $state |
|
21 | - * @param string $zip |
|
22 | - * @param string $country |
|
23 | - * @param string $formatted_address |
|
24 | - * @param string $sub |
|
25 | - * @return mixed |
|
26 | - */ |
|
27 | - protected function parse_formatted_address( |
|
28 | - $address, |
|
29 | - $address2, |
|
30 | - $city, |
|
31 | - $state, |
|
32 | - $zip, |
|
33 | - $country, |
|
34 | - $formatted_address, |
|
35 | - $sub |
|
36 | - ) { |
|
37 | - // swap address part placeholders for the real text |
|
38 | - $formatted_address = str_replace( |
|
39 | - // find |
|
40 | - array('{address}', '{address2}', '{city}', '{state}', '{zip}', '{country}'), |
|
41 | - // replace |
|
42 | - array($address, $address2, $city, $state, $zip, $country), |
|
43 | - // string |
|
44 | - $formatted_address |
|
45 | - ); |
|
46 | - // remove placeholder from start and end, reduce repeating placeholders to singles, then replace with HTML line breaks |
|
47 | - return preg_replace('/%+/', $sub, trim($formatted_address, '%')); |
|
48 | - } |
|
15 | + // phpcs:disable PSR1.Methods.CamelCapsMethodName.NotCamelCaps |
|
16 | + /** |
|
17 | + * @param string $address |
|
18 | + * @param string $address2 |
|
19 | + * @param string $city |
|
20 | + * @param string $state |
|
21 | + * @param string $zip |
|
22 | + * @param string $country |
|
23 | + * @param string $formatted_address |
|
24 | + * @param string $sub |
|
25 | + * @return mixed |
|
26 | + */ |
|
27 | + protected function parse_formatted_address( |
|
28 | + $address, |
|
29 | + $address2, |
|
30 | + $city, |
|
31 | + $state, |
|
32 | + $zip, |
|
33 | + $country, |
|
34 | + $formatted_address, |
|
35 | + $sub |
|
36 | + ) { |
|
37 | + // swap address part placeholders for the real text |
|
38 | + $formatted_address = str_replace( |
|
39 | + // find |
|
40 | + array('{address}', '{address2}', '{city}', '{state}', '{zip}', '{country}'), |
|
41 | + // replace |
|
42 | + array($address, $address2, $city, $state, $zip, $country), |
|
43 | + // string |
|
44 | + $formatted_address |
|
45 | + ); |
|
46 | + // remove placeholder from start and end, reduce repeating placeholders to singles, then replace with HTML line breaks |
|
47 | + return preg_replace('/%+/', $sub, trim($formatted_address, '%')); |
|
48 | + } |
|
49 | 49 | } |