@@ -7,251 +7,251 @@ |
||
7 | 7 | /** |
8 | 8 | * @var string |
9 | 9 | */ |
10 | - public static $appDefine='src'; |
|
10 | + public static $appDefine = 'src'; |
|
11 | 11 | |
12 | 12 | /** |
13 | 13 | * @var string |
14 | 14 | */ |
15 | - public static $autoloadNamespace='App'; |
|
15 | + public static $autoloadNamespace = 'App'; |
|
16 | 16 | |
17 | 17 | /** |
18 | 18 | * @var string |
19 | 19 | */ |
20 | - public static $projectPrefixGroup='Api'; |
|
20 | + public static $projectPrefixGroup = 'Api'; |
|
21 | 21 | |
22 | 22 | /** |
23 | 23 | * @var string |
24 | 24 | */ |
25 | - public static $methodPrefix='Action'; |
|
25 | + public static $methodPrefix = 'Action'; |
|
26 | 26 | |
27 | 27 | /** |
28 | 28 | * @var string |
29 | 29 | */ |
30 | - public static $callClassPrefix='Controller'; |
|
30 | + public static $callClassPrefix = 'Controller'; |
|
31 | 31 | |
32 | 32 | /** |
33 | 33 | * @var string |
34 | 34 | */ |
35 | - public static $controllerBundleName=''; |
|
35 | + public static $controllerBundleName = ''; |
|
36 | 36 | |
37 | 37 | /** |
38 | 38 | * @var string |
39 | 39 | */ |
40 | - public static $resourceInController='Resource'; |
|
40 | + public static $resourceInController = 'Resource'; |
|
41 | 41 | |
42 | 42 | /** |
43 | 43 | * @var string |
44 | 44 | */ |
45 | - public static $configurationInController='Config'; |
|
45 | + public static $configurationInController = 'Config'; |
|
46 | 46 | |
47 | 47 | /** |
48 | 48 | * @var null |
49 | 49 | */ |
50 | - public static $appPath=null; |
|
50 | + public static $appPath = null; |
|
51 | 51 | |
52 | 52 | /** |
53 | 53 | * @var string |
54 | 54 | */ |
55 | - public static $kernel='Kernel'; |
|
55 | + public static $kernel = 'Kernel'; |
|
56 | 56 | |
57 | 57 | /** |
58 | 58 | * @var string |
59 | 59 | */ |
60 | - public static $repository='Repository'; |
|
60 | + public static $repository = 'Repository'; |
|
61 | 61 | |
62 | 62 | /** |
63 | 63 | * @var string |
64 | 64 | */ |
65 | - public static $listener='Listener'; |
|
65 | + public static $listener = 'Listener'; |
|
66 | 66 | |
67 | 67 | /** |
68 | 68 | * @var string |
69 | 69 | */ |
70 | - public static $serviceAnnotations='ServiceAnnotationsManager'; |
|
70 | + public static $serviceAnnotations = 'ServiceAnnotationsManager'; |
|
71 | 71 | |
72 | 72 | /** |
73 | 73 | * @var string |
74 | 74 | */ |
75 | - public static $serviceMiddleware='ServiceMiddlewareManager'; |
|
75 | + public static $serviceMiddleware = 'ServiceMiddlewareManager'; |
|
76 | 76 | |
77 | 77 | /** |
78 | 78 | * @var string |
79 | 79 | */ |
80 | - public static $storage='Storage'; |
|
80 | + public static $storage = 'Storage'; |
|
81 | 81 | |
82 | 82 | /** |
83 | 83 | * @var string |
84 | 84 | */ |
85 | - public static $controller='Controllers'; |
|
85 | + public static $controller = 'Controllers'; |
|
86 | 86 | |
87 | 87 | /** |
88 | 88 | * @var string |
89 | 89 | */ |
90 | - public static $platform='__Platform'; |
|
90 | + public static $platform = '__Platform'; |
|
91 | 91 | |
92 | 92 | /** |
93 | 93 | * @var string |
94 | 94 | */ |
95 | - public static $sourcePath='Source'; |
|
95 | + public static $sourcePath = 'Source'; |
|
96 | 96 | |
97 | 97 | /** |
98 | 98 | * @var string |
99 | 99 | */ |
100 | - public static $sourceRequest='Client'; |
|
100 | + public static $sourceRequest = 'Client'; |
|
101 | 101 | |
102 | 102 | /** |
103 | 103 | * @var string |
104 | 104 | */ |
105 | - public static $model='Model'; |
|
105 | + public static $model = 'Model'; |
|
106 | 106 | |
107 | 107 | /** |
108 | 108 | * @var string |
109 | 109 | */ |
110 | - public static $builder='Builder'; |
|
110 | + public static $builder = 'Builder'; |
|
111 | 111 | |
112 | 112 | /** |
113 | 113 | * @var string |
114 | 114 | */ |
115 | - public static $migration='Migrations'; |
|
115 | + public static $migration = 'Migrations'; |
|
116 | 116 | |
117 | 117 | /** |
118 | 118 | * @var string |
119 | 119 | */ |
120 | - public static $config='Config'; |
|
120 | + public static $config = 'Config'; |
|
121 | 121 | |
122 | 122 | /** |
123 | 123 | * @var string |
124 | 124 | */ |
125 | - public static $helpers='Helpers'; |
|
125 | + public static $helpers = 'Helpers'; |
|
126 | 126 | |
127 | 127 | /** |
128 | 128 | * @var string |
129 | 129 | */ |
130 | - public static $test='Tests'; |
|
130 | + public static $test = 'Tests'; |
|
131 | 131 | |
132 | 132 | /** |
133 | 133 | * @var string |
134 | 134 | */ |
135 | - public static $workers='Workers'; |
|
135 | + public static $workers = 'Workers'; |
|
136 | 136 | |
137 | 137 | |
138 | 138 | /** |
139 | 139 | * @var string |
140 | 140 | */ |
141 | - public static $optional='Optional'; |
|
141 | + public static $optional = 'Optional'; |
|
142 | 142 | |
143 | 143 | /** |
144 | 144 | * @var string |
145 | 145 | */ |
146 | - public static $events='Events'; |
|
146 | + public static $events = 'Events'; |
|
147 | 147 | |
148 | 148 | /** |
149 | 149 | * @var string |
150 | 150 | */ |
151 | - public static $listeners='Listeners'; |
|
151 | + public static $listeners = 'Listeners'; |
|
152 | 152 | |
153 | 153 | /** |
154 | 154 | * @var string |
155 | 155 | */ |
156 | - public static $subscribers='Subscribers'; |
|
156 | + public static $subscribers = 'Subscribers'; |
|
157 | 157 | |
158 | 158 | /** |
159 | 159 | * @var string |
160 | 160 | */ |
161 | - public static $exception='Exceptions'; |
|
161 | + public static $exception = 'Exceptions'; |
|
162 | 162 | |
163 | 163 | /** |
164 | 164 | * @var string |
165 | 165 | */ |
166 | - public static $job='Job'; |
|
166 | + public static $job = 'Job'; |
|
167 | 167 | |
168 | 168 | |
169 | 169 | /** |
170 | 170 | * @var string |
171 | 171 | */ |
172 | - public static $webservice='Webservice'; |
|
172 | + public static $webservice = 'Webservice'; |
|
173 | 173 | |
174 | 174 | /** |
175 | 175 | * @var string |
176 | 176 | */ |
177 | - public static $log='Log'; |
|
177 | + public static $log = 'Log'; |
|
178 | 178 | |
179 | 179 | /** |
180 | 180 | * @var string |
181 | 181 | */ |
182 | - public static $resource='Resource'; |
|
182 | + public static $resource = 'Resource'; |
|
183 | 183 | |
184 | 184 | /** |
185 | 185 | * @var string |
186 | 186 | */ |
187 | - public static $cache='Cache'; |
|
187 | + public static $cache = 'Cache'; |
|
188 | 188 | |
189 | 189 | /** |
190 | 190 | * @var string |
191 | 191 | */ |
192 | - public static $language='Language'; |
|
192 | + public static $language = 'Language'; |
|
193 | 193 | /** |
194 | 194 | * @var string |
195 | 195 | */ |
196 | - public static $session='Session'; |
|
196 | + public static $session = 'Session'; |
|
197 | 197 | |
198 | 198 | /** |
199 | 199 | * @var string |
200 | 200 | */ |
201 | - public static $middleware='Middleware'; |
|
201 | + public static $middleware = 'Middleware'; |
|
202 | 202 | |
203 | 203 | /** |
204 | 204 | * @var string |
205 | 205 | */ |
206 | - public static $route='Routes'; |
|
206 | + public static $route = 'Routes'; |
|
207 | 207 | |
208 | 208 | /** |
209 | 209 | * @var string |
210 | 210 | */ |
211 | - public static $request='Client'; |
|
211 | + public static $request = 'Client'; |
|
212 | 212 | |
213 | 213 | /** |
214 | 214 | * @var string |
215 | 215 | */ |
216 | - public static $factory='Factory'; |
|
216 | + public static $factory = 'Factory'; |
|
217 | 217 | |
218 | 218 | /** |
219 | 219 | * @var string |
220 | 220 | */ |
221 | - public static $node='Node'; |
|
221 | + public static $node = 'Node'; |
|
222 | 222 | |
223 | 223 | /** |
224 | 224 | * @var string |
225 | 225 | */ |
226 | - public static $provider='Providers'; |
|
226 | + public static $provider = 'Providers'; |
|
227 | 227 | |
228 | 228 | /** |
229 | 229 | * @var string |
230 | 230 | */ |
231 | - public static $once='Once'; |
|
231 | + public static $once = 'Once'; |
|
232 | 232 | |
233 | 233 | /** |
234 | 234 | * @var string |
235 | 235 | */ |
236 | - public static $command='Command'; |
|
236 | + public static $command = 'Command'; |
|
237 | 237 | |
238 | 238 | /** |
239 | 239 | * @var string |
240 | 240 | */ |
241 | - public static $stub='Stub'; |
|
241 | + public static $stub = 'Stub'; |
|
242 | 242 | |
243 | 243 | /** |
244 | 244 | * @var string |
245 | 245 | */ |
246 | - public static $store='Store'; |
|
246 | + public static $store = 'Store'; |
|
247 | 247 | |
248 | 248 | /** |
249 | 249 | * @var string |
250 | 250 | */ |
251 | - public static $boot='Boot'; |
|
251 | + public static $boot = 'Boot'; |
|
252 | 252 | |
253 | 253 | /** |
254 | 254 | * @var string |
255 | 255 | */ |
256 | - public static $autoService='Autoservice'; |
|
256 | + public static $autoService = 'Autoservice'; |
|
257 | 257 | } |
258 | 258 | \ No newline at end of file |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | */ |
32 | 32 | protected function getAutoGenerators() |
33 | 33 | { |
34 | - if(property_exists($this,'auto_generators')){ |
|
34 | + if (property_exists($this, 'auto_generators')) { |
|
35 | 35 | return $this->auto_generators; |
36 | 36 | } |
37 | 37 | return []; |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | */ |
46 | 46 | protected function getAutoGeneratorsDontOverwrite() |
47 | 47 | { |
48 | - if(property_exists($this,'auto_generators_dont_overwrite')){ |
|
48 | + if (property_exists($this, 'auto_generators_dont_overwrite')) { |
|
49 | 49 | return $this->auto_generators_dont_overwrite; |
50 | 50 | } |
51 | 51 | return []; |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | */ |
60 | 60 | protected function getClientObjects() |
61 | 61 | { |
62 | - return array_diff_key($this->getObjects(),['inputs'=>[]]); |
|
62 | + return array_diff_key($this->getObjects(), ['inputs'=>[]]); |
|
63 | 63 | } |
64 | 64 | |
65 | 65 | /** |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | */ |
70 | 70 | protected function getGenerators() |
71 | 71 | { |
72 | - if(property_exists($this,'generators')){ |
|
72 | + if (property_exists($this, 'generators')) { |
|
73 | 73 | return $this->generators; |
74 | 74 | } |
75 | 75 | return []; |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | */ |
84 | 84 | protected function getGeneratorsDontOverwrite() |
85 | 85 | { |
86 | - if(property_exists($this,'generators_dont_overwrite')){ |
|
86 | + if (property_exists($this, 'generators_dont_overwrite')) { |
|
87 | 87 | return $this->generators_dont_overwrite; |
88 | 88 | } |
89 | 89 | return []; |
@@ -237,8 +237,7 @@ discard block |
||
237 | 237 | if(!isset($this->inputs[$generator])){ |
238 | 238 | $this->{$generator} = $this->{$generatorMethodName}(); |
239 | 239 | $this->inputs[$generator] = $this->{$generatorMethodName}(); |
240 | - } |
|
241 | - else { |
|
240 | + } else { |
|
242 | 241 | |
243 | 242 | if($this->checkProperties('auto_generators_dont_overwrite') |
244 | 243 | && in_array($generator,$this->getAutoGeneratorsDontOverwrite())){ |
@@ -395,8 +394,7 @@ discard block |
||
395 | 394 | $keyMethod = $this->{$method}(); |
396 | 395 | $this->inputs[$key][] = $keyMethod; |
397 | 396 | } |
398 | - } |
|
399 | - else{ |
|
397 | + } else{ |
|
400 | 398 | if(isset($this->inputs[$key])){ |
401 | 399 | $keyMethod = $this->{$method}(); |
402 | 400 | $this->inputs[$key] = $keyMethod; |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | * |
47 | 47 | * @throws ReflectionExceptionAlias |
48 | 48 | */ |
49 | - public function __construct($clientData=null) |
|
49 | + public function __construct($clientData = null) |
|
50 | 50 | { |
51 | 51 | //reflection process |
52 | 52 | $this->reflection = app()['reflection']($this); |
@@ -69,25 +69,25 @@ discard block |
||
69 | 69 | private function autoValidate($validate) |
70 | 70 | { |
71 | 71 | //we get the values to auto-validate. |
72 | - foreach ($this->{$validate} as $object=>$datas){ |
|
72 | + foreach ($this->{$validate} as $object=>$datas) { |
|
73 | 73 | |
74 | 74 | // the auto-validate value must necessarily represent a class. |
75 | 75 | // otherwise auto-validate is not used. |
76 | - if(Utils::isNamespaceExists($object)){ |
|
76 | + if (Utils::isNamespaceExists($object)) { |
|
77 | 77 | $getObjectInstance = app()->resolve($object); |
78 | 78 | |
79 | 79 | // we get the index values, |
80 | 80 | // which are called methods of the auto-validate value that represents the class. |
81 | - foreach ($datas as $dataKey=>$data){ |
|
81 | + foreach ($datas as $dataKey=>$data) { |
|
82 | 82 | |
83 | 83 | // if the methods of the auto-validate class resolved by the container resolve method apply, |
84 | 84 | // the process of auto-validate automatic implementation will be completed. |
85 | - if(is_numeric($dataKey) && method_exists($getObjectInstance,$data)){ |
|
86 | - if(isset($this->origin[$data])){ |
|
87 | - if(!is_array($this->origin[$data])){ |
|
85 | + if (is_numeric($dataKey) && method_exists($getObjectInstance, $data)) { |
|
86 | + if (isset($this->origin[$data])) { |
|
87 | + if (!is_array($this->origin[$data])) { |
|
88 | 88 | $this->origin[$data] = array($this->origin[$data]); |
89 | 89 | } |
90 | - foreach ($this->origin[$data] as $originData){ |
|
90 | + foreach ($this->origin[$data] as $originData) { |
|
91 | 91 | $getObjectInstance->{$data}($originData); |
92 | 92 | } |
93 | 93 | } |
@@ -106,15 +106,15 @@ discard block |
||
106 | 106 | { |
107 | 107 | // expected method is executed. |
108 | 108 | // this method is a must for http method values to be found in this property. |
109 | - if($this->checkProperties('capsule')){ |
|
109 | + if ($this->checkProperties('capsule')) { |
|
110 | 110 | |
111 | 111 | $caret = $this->capsuleCaret(); |
112 | 112 | |
113 | - foreach($this->inputs as $input=>$value){ |
|
113 | + foreach ($this->inputs as $input=>$value) { |
|
114 | 114 | |
115 | - if(isset($caret[$input]) || ( |
|
116 | - $this->checkProperties('capsule') && !in_array($input,$this->capsule) |
|
117 | - )){ |
|
115 | + if (isset($caret[$input]) || ( |
|
116 | + $this->checkProperties('capsule') && !in_array($input, $this->capsule) |
|
117 | + )) { |
|
118 | 118 | exception('capsuleRequestException') |
119 | 119 | ->overflow('The '.$input.' value cannot be sent.'); |
120 | 120 | } |
@@ -131,15 +131,15 @@ discard block |
||
131 | 131 | { |
132 | 132 | $caret = []; |
133 | 133 | |
134 | - foreach($this->inputs as $input=>$item){ |
|
135 | - if(in_array('@'.$input,$this->capsule)){ |
|
134 | + foreach ($this->inputs as $input=>$item) { |
|
135 | + if (in_array('@'.$input, $this->capsule)) { |
|
136 | 136 | $caret[$input] = $item; |
137 | 137 | } |
138 | 138 | } |
139 | 139 | |
140 | 140 | foreach ($this->capsule as $item) { |
141 | - if(preg_match('#@.*#is',$item)){ |
|
142 | - $this->capsule = array_diff($this->capsule,[$item]); |
|
141 | + if (preg_match('#@.*#is', $item)) { |
|
142 | + $this->capsule = array_diff($this->capsule, [$item]); |
|
143 | 143 | } |
144 | 144 | } |
145 | 145 | |
@@ -158,15 +158,15 @@ discard block |
||
158 | 158 | |
159 | 159 | // Determines which HTTP method |
160 | 160 | // the request object will be exposed to. |
161 | - if($this->checkProperties('http')){ |
|
161 | + if ($this->checkProperties('http')) { |
|
162 | 162 | |
163 | 163 | // if the current http method does not exist |
164 | 164 | // in the http object, the exception will be thrown. |
165 | - if(!in_array($method,$this->http)){ |
|
165 | + if (!in_array($method, $this->http)) { |
|
166 | 166 | |
167 | 167 | //exception batMethodCall |
168 | 168 | exception()->badMethodCall( |
169 | - 'Invalid http method process for '.class_basename($this).'.That is accepted http methods ['.implode(",",$this->http).'] '); |
|
169 | + 'Invalid http method process for '.class_basename($this).'.That is accepted http methods ['.implode(",", $this->http).'] '); |
|
170 | 170 | } |
171 | 171 | } |
172 | 172 | } |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | { |
182 | 182 | // from the properties of the object properties to |
183 | 183 | // the existing variables, control the array and at least one element. |
184 | - return (property_exists($this,$properties) |
|
184 | + return (property_exists($this, $properties) |
|
185 | 185 | && is_array($this->{$properties}) && count($this->{$properties})) ? true : false; |
186 | 186 | } |
187 | 187 | |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | { |
195 | 195 | // we are saving the expected values for the request in container. |
196 | 196 | // this record can be returned in exception information. |
197 | - app()->register('requestExpected',$this->expected); |
|
197 | + app()->register('requestExpected', $this->expected); |
|
198 | 198 | } |
199 | 199 | |
200 | 200 | /** |
@@ -206,15 +206,15 @@ discard block |
||
206 | 206 | public function except($except) |
207 | 207 | { |
208 | 208 | // the except parameter is a callable value. |
209 | - if(is_callable($except)){ |
|
210 | - $call = call_user_func_array($except,[$this]); |
|
209 | + if (is_callable($except)) { |
|
210 | + $call = call_user_func_array($except, [$this]); |
|
211 | 211 | $except = $call; |
212 | 212 | } |
213 | 213 | |
214 | 214 | // except with the except exceptions property |
215 | 215 | // and then assigning them to the inputs property. |
216 | - $this->except = array_merge($this->except,$except); |
|
217 | - $this->inputs = array_diff_key($this->inputs,array_flip($this->except)); |
|
216 | + $this->except = array_merge($this->except, $except); |
|
217 | + $this->inputs = array_diff_key($this->inputs, array_flip($this->except)); |
|
218 | 218 | |
219 | 219 | return $this; |
220 | 220 | } |
@@ -228,27 +228,27 @@ discard block |
||
228 | 228 | { |
229 | 229 | // expected method is executed. |
230 | 230 | // this method is a must for http method values to be found in this property. |
231 | - if($this->checkProperties('expected')){ |
|
231 | + if ($this->checkProperties('expected')) { |
|
232 | 232 | |
233 | 233 | // if the expected values are not found in the inputs array, |
234 | 234 | // the exception will be thrown. |
235 | - foreach ($this->expected as $expected){ |
|
235 | + foreach ($this->expected as $expected) { |
|
236 | 236 | |
237 | 237 | $expectedValues = []; |
238 | 238 | |
239 | 239 | // mandatory expected data for each key can be separated by | operator. |
240 | 240 | // this is evaluated as "or". |
241 | - foreach($expectedData = explode("|",$expected) as $inputs){ |
|
242 | - if(!isset($this->inputs[$inputs])){ |
|
241 | + foreach ($expectedData = explode("|", $expected) as $inputs) { |
|
242 | + if (!isset($this->inputs[$inputs])) { |
|
243 | 243 | $expectedValues[] = $inputs; |
244 | 244 | } |
245 | 245 | } |
246 | 246 | |
247 | 247 | // if the expectedData and expectedValues |
248 | 248 | // array are numerically equal to the expected key, the exception is thrown. |
249 | - if(count($expectedData)===count($expectedValues)){ |
|
249 | + if (count($expectedData)===count($expectedValues)) { |
|
250 | 250 | exception($expected) |
251 | - ->unexpectedValue('You absolutely have to send the value '.implode(" or ",$expectedValues).' for request object'); |
|
251 | + ->unexpectedValue('You absolutely have to send the value '.implode(" or ", $expectedValues).' for request object'); |
|
252 | 252 | } |
253 | 253 | } |
254 | 254 | } |
@@ -263,17 +263,17 @@ discard block |
||
263 | 263 | { |
264 | 264 | // check the presence of the generator object |
265 | 265 | // and operate the generator over this object. |
266 | - if($this->checkProperties('auto_generators')){ |
|
266 | + if ($this->checkProperties('auto_generators')) { |
|
267 | 267 | $generators = $this->getAutoGenerators(); |
268 | 268 | } |
269 | 269 | |
270 | 270 | // check the presence of the generator object |
271 | 271 | // and operate the generator over this object. |
272 | - if($this->checkProperties('generators')){ |
|
273 | - $generators = array_merge(isset($generators) ? $generators: [],$this->getGenerators()); |
|
272 | + if ($this->checkProperties('generators')) { |
|
273 | + $generators = array_merge(isset($generators) ? $generators : [], $this->getGenerators()); |
|
274 | 274 | } |
275 | 275 | |
276 | - if(isset($generators)){ |
|
276 | + if (isset($generators)) { |
|
277 | 277 | $this->generatorMethod($generators); |
278 | 278 | } |
279 | 279 | } |
@@ -288,30 +288,30 @@ discard block |
||
288 | 288 | private function generatorMethod($generators) |
289 | 289 | { |
290 | 290 | //generator array object |
291 | - foreach ($generators as $generator){ |
|
291 | + foreach ($generators as $generator) { |
|
292 | 292 | |
293 | 293 | //generator method name |
294 | 294 | $generatorMethodName = $generator.'Generator'; |
295 | 295 | |
296 | 296 | // if the generator method is present, |
297 | 297 | // the fake value is assigned. |
298 | - if(method_exists($this,$generatorMethodName)){ |
|
298 | + if (method_exists($this, $generatorMethodName)) { |
|
299 | 299 | |
300 | 300 | //fake registration |
301 | - if(!isset($this->inputs[$generator])){ |
|
301 | + if (!isset($this->inputs[$generator])) { |
|
302 | 302 | $this->{$generator} = $this->{$generatorMethodName}(); |
303 | 303 | $this->inputs[$generator] = $this->{$generatorMethodName}(); |
304 | 304 | } |
305 | 305 | else { |
306 | 306 | |
307 | - if($this->checkProperties('auto_generators_dont_overwrite') |
|
308 | - && in_array($generator,$this->getAutoGeneratorsDontOverwrite())){ |
|
307 | + if ($this->checkProperties('auto_generators_dont_overwrite') |
|
308 | + && in_array($generator, $this->getAutoGeneratorsDontOverwrite())) { |
|
309 | 309 | $this->{$generator} = $this->{$generatorMethodName}(); |
310 | 310 | $this->inputs[$generator] = $this->{$generatorMethodName}(); |
311 | 311 | } |
312 | 312 | |
313 | - if($this->checkProperties('generators_dont_overwrite') |
|
314 | - && in_array($generator,$this->getGeneratorsDontOverwrite())){ |
|
313 | + if ($this->checkProperties('generators_dont_overwrite') |
|
314 | + && in_array($generator, $this->getGeneratorsDontOverwrite())) { |
|
315 | 315 | $this->{$generator} = $this->{$generatorMethodName}(); |
316 | 316 | $this->inputs[$generator] = $this->{$generatorMethodName}(); |
317 | 317 | } |
@@ -358,7 +358,7 @@ discard block |
||
358 | 358 | { |
359 | 359 | // we use the http method to write |
360 | 360 | // the values to the inputs and origin properties. |
361 | - foreach($this->clientData as $key=>$value){ |
|
361 | + foreach ($this->clientData as $key=>$value) { |
|
362 | 362 | |
363 | 363 | //inputs and origin properties |
364 | 364 | $this->inputs[$key] = $value; |
@@ -405,9 +405,9 @@ discard block |
||
405 | 405 | |
406 | 406 | // we update the input values after |
407 | 407 | // we receive and check the saved objects. |
408 | - foreach ($clientObjects as $key=>$value){ |
|
408 | + foreach ($clientObjects as $key=>$value) { |
|
409 | 409 | |
410 | - if(isset($clientObjects['origin'][$key])){ |
|
410 | + if (isset($clientObjects['origin'][$key])) { |
|
411 | 411 | |
412 | 412 | $this->{$key} = $clientObjects['origin'][$key]; |
413 | 413 | $this->inputs[$key] = $this->{$key}; |
@@ -434,11 +434,11 @@ discard block |
||
434 | 434 | |
435 | 435 | // the request update to be performed using |
436 | 436 | // the method name to be used with the http method. |
437 | - $this->setRequestInputs($requestMethod,$key); |
|
437 | + $this->setRequestInputs($requestMethod, $key); |
|
438 | 438 | |
439 | 439 | // the request update to be performed using |
440 | 440 | // the method name to be used without the http method. |
441 | - $this->setRequestInputs($key,$key); |
|
441 | + $this->setRequestInputs($key, $key); |
|
442 | 442 | } |
443 | 443 | |
444 | 444 | /** |
@@ -449,28 +449,28 @@ discard block |
||
449 | 449 | * |
450 | 450 | * @throws ReflectionExceptionAlias |
451 | 451 | */ |
452 | - private function setRequestInputs($method,$key) |
|
452 | + private function setRequestInputs($method, $key) |
|
453 | 453 | { |
454 | - if(method_exists($this,$method) && $this->reflection->reflectionMethodParams($method)->isProtected){ |
|
454 | + if (method_exists($this, $method) && $this->reflection->reflectionMethodParams($method)->isProtected) { |
|
455 | 455 | |
456 | 456 | //check annotations for method |
457 | - $annotation = app()->resolve(ClientAnnotationManager::class,['request'=>$this]); |
|
458 | - $annotation->annotation($method,$key); |
|
457 | + $annotation = app()->resolve(ClientAnnotationManager::class, ['request'=>$this]); |
|
458 | + $annotation->annotation($method, $key); |
|
459 | 459 | |
460 | - if(isset($this->inputs[$key]) && is_array($this->inputs[$key])){ |
|
460 | + if (isset($this->inputs[$key]) && is_array($this->inputs[$key])) { |
|
461 | 461 | |
462 | 462 | $inputKeys = $this->inputs[$key]; |
463 | 463 | |
464 | 464 | $this->inputs[$key] = []; |
465 | - foreach ($inputKeys as $input){ |
|
465 | + foreach ($inputKeys as $input) { |
|
466 | 466 | |
467 | 467 | $this->{$key} = $input; |
468 | 468 | $keyMethod = $this->{$method}(); |
469 | 469 | $this->inputs[$key][] = $keyMethod; |
470 | 470 | } |
471 | 471 | } |
472 | - else{ |
|
473 | - if(isset($this->inputs[$key])){ |
|
472 | + else { |
|
473 | + if (isset($this->inputs[$key])) { |
|
474 | 474 | $keyMethod = $this->{$method}(); |
475 | 475 | $this->inputs[$key] = $keyMethod; |
476 | 476 | } |
@@ -488,8 +488,8 @@ discard block |
||
488 | 488 | { |
489 | 489 | // the auto object validate property is the property |
490 | 490 | // where all of your request values are automatically validated. |
491 | - if(property_exists($this,'autoObjectValidate') |
|
492 | - && is_array($this->autoObjectValidate) && count($this->autoObjectValidate)){ |
|
491 | + if (property_exists($this, 'autoObjectValidate') |
|
492 | + && is_array($this->autoObjectValidate) && count($this->autoObjectValidate)) { |
|
493 | 493 | $this->autoValidate('autoObjectValidate'); |
494 | 494 | } |
495 | 495 | } |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | * @param $key |
23 | 23 | * @return mixed |
24 | 24 | */ |
25 | - abstract function annotation($method,$key); |
|
25 | + abstract function annotation($method, $key); |
|
26 | 26 | |
27 | 27 | /** |
28 | 28 | * get input values from request object |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | * |
53 | 53 | * @param $reflection |
54 | 54 | */ |
55 | - public function setReflection($reflection){ |
|
55 | + public function setReflection($reflection) { |
|
56 | 56 | |
57 | 57 | $this->request = ClosureDispatcher::bind($reflection); |
58 | 58 | } |
@@ -33,9 +33,9 @@ |
||
33 | 33 | { |
34 | 34 | $inputs = $this->app->get($this->method); |
35 | 35 | |
36 | - $content = json_decode($this->app['request']->getContent(),1); |
|
36 | + $content = json_decode($this->app['request']->getContent(), 1); |
|
37 | 37 | |
38 | - if(is_array($inputs) && count($inputs)){ |
|
38 | + if (is_array($inputs) && count($inputs)) { |
|
39 | 39 | return $inputs; |
40 | 40 | } |
41 | 41 |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | /** |
33 | 33 | * @var array |
34 | 34 | */ |
35 | - public $commandRule=['name','client']; |
|
35 | + public $commandRule = ['name', 'client']; |
|
36 | 36 | |
37 | 37 | /** |
38 | 38 | * @method create |
@@ -54,23 +54,23 @@ discard block |
||
54 | 54 | //set project directory |
55 | 55 | $this->file->makeDirectory($this); |
56 | 56 | |
57 | - if(!file_exists($manager = $this->directory['clientNameDir'].'/'.$name.'Manager.php')){ |
|
57 | + if (!file_exists($manager = $this->directory['clientNameDir'].'/'.$name.'Manager.php')) { |
|
58 | 58 | $this->touch['client/manager'] = $manager; |
59 | 59 | } |
60 | 60 | |
61 | - if(!file_exists($this->directory['clientNameCreate'].'/Client.php')){ |
|
61 | + if (!file_exists($this->directory['clientNameCreate'].'/Client.php')) { |
|
62 | 62 | $this->touch['client/client'] = $this->directory['clientNameCreate'].'/Client.php'; |
63 | 63 | $this->touch['client/clientGenerator'] = $this->directory['clientNameCreate'].'/ClientGenerator.php'; |
64 | 64 | } |
65 | 65 | |
66 | 66 | $clientSourceNamespace = Utils::getNamespace($this->directory['clientSource'].'/'.$client.'.php'); |
67 | 67 | |
68 | - if(!file_exists($clientSourceName = $this->directory['clientSource'].'/'.$client.'.php')){ |
|
68 | + if (!file_exists($clientSourceName = $this->directory['clientSource'].'/'.$client.'.php')) { |
|
69 | 69 | $this->touch['client/source'] = $clientSourceName.''; |
70 | 70 | //$this->touch['client/sourcegenerator'] = $this->directory['clientSource'].'/'.$client.'Generator.php'; |
71 | 71 | } |
72 | 72 | |
73 | - if(!file_exists($this->directory['clientNameCreate'].'/ClientProvider.php')){ |
|
73 | + if (!file_exists($this->directory['clientNameCreate'].'/ClientProvider.php')) { |
|
74 | 74 | $this->touch['client/clientProvider'] = $this->directory['clientNameCreate'].'/ClientProvider.php'; |
75 | 75 | } |
76 | 76 | |
@@ -84,13 +84,13 @@ discard block |
||
84 | 84 | |
85 | 85 | $nameGeneratorNamespace = Utils::getNamespace($managerPath = $this->directory['clientNameDir'].''.DIRECTORY_SEPARATOR.''.$nameManager.'.php'); |
86 | 86 | |
87 | - $generator = new Generator(path()->version(),'ClientManager'); |
|
87 | + $generator = new Generator(path()->version(), 'ClientManager'); |
|
88 | 88 | |
89 | 89 | $clientManager = app()->namespace()->version().'\\ClientManager'; |
90 | 90 | |
91 | 91 | $clientManagerResolve = new $clientManager; |
92 | 92 | |
93 | - if(!method_exists($clientManagerResolve,strtolower($name))){ |
|
93 | + if (!method_exists($clientManagerResolve, strtolower($name))) { |
|
94 | 94 | |
95 | 95 | $generator->createMethod([ |
96 | 96 | strtolower($name) |
@@ -121,11 +121,11 @@ discard block |
||
121 | 121 | |
122 | 122 | } |
123 | 123 | |
124 | - $nameGenerator = new Generator($this->directory['clientNameDir'],$name.'Manager'); |
|
124 | + $nameGenerator = new Generator($this->directory['clientNameDir'], $name.'Manager'); |
|
125 | 125 | |
126 | 126 | $nameGeneratorNamespaceResolve = new $nameGeneratorNamespace; |
127 | 127 | |
128 | - if(!method_exists($nameGeneratorNamespaceResolve,strtolower($client))){ |
|
128 | + if (!method_exists($nameGeneratorNamespaceResolve, strtolower($client))) { |
|
129 | 129 | |
130 | 130 | $nameGenerator->createMethod([ |
131 | 131 | strtolower($client) |
@@ -27,13 +27,13 @@ discard block |
||
27 | 27 | //the auto service to be called. |
28 | 28 | return ClosureDispatcher::bind($controllerInstance)->call(function() use($controllerInstance){ |
29 | 29 | |
30 | - if(property_exists($controllerInstance,'response')){ |
|
30 | + if (property_exists($controllerInstance, 'response')) { |
|
31 | 31 | return $controllerInstance->response; |
32 | 32 | } |
33 | 33 | |
34 | 34 | // if the client wishes, |
35 | 35 | // data can be returned in the supported format. |
36 | - if(app()->has('clientResponseType')){ |
|
36 | + if (app()->has('clientResponseType')) { |
|
37 | 37 | return app()->get('clientResponseType'); |
38 | 38 | } |
39 | 39 | |
@@ -73,8 +73,7 @@ discard block |
||
73 | 73 | { |
74 | 74 | //we get the response type by checking the instanceController object from the router. |
75 | 75 | //Each type of response is in the base class in project directory. |
76 | - return ($this->getControllerInstance()===null) ? core()->responseType : |
|
77 | - $this->appResponseType(); |
|
76 | + return ($this->getControllerInstance()===null) ? core()->responseType : $this->appResponseType(); |
|
78 | 77 | } |
79 | 78 | |
80 | 79 | /** |
@@ -85,19 +84,19 @@ discard block |
||
85 | 84 | public function handle() |
86 | 85 | { |
87 | 86 | //definition for singleton instance |
88 | - define ('responseApp',true); |
|
87 | + define('responseApp', true); |
|
89 | 88 | |
90 | 89 | //get out putter for response |
91 | 90 | $formatter = $this->formatter(); |
92 | 91 | |
93 | 92 | //if out putter is not null |
94 | - if(Utils::isNamespaceExists($formatter)){ |
|
93 | + if (Utils::isNamespaceExists($formatter)) { |
|
95 | 94 | |
96 | 95 | //We resolve the response via the service container |
97 | 96 | //and run the handle method. |
98 | 97 | $result = app()->resolve($formatter)->{$this->getResponseKind()}($this->getOutPutter()); |
99 | 98 | |
100 | - $this->app->register('result',$result); |
|
99 | + $this->app->register('result', $result); |
|
101 | 100 | } |
102 | 101 | } |
103 | 102 | |
@@ -107,7 +106,7 @@ discard block |
||
107 | 106 | * @param array $data |
108 | 107 | * @return array |
109 | 108 | */ |
110 | - public function outputFormatter($data=array()) |
|
109 | + public function outputFormatter($data = array()) |
|
111 | 110 | { |
112 | 111 | $dataCapsule = config('response.data'); |
113 | 112 |
@@ -72,8 +72,7 @@ discard block |
||
72 | 72 | //catch exception |
73 | 73 | exception($this->exceptionParams[$key]['name'],$keyParams) |
74 | 74 | ->unexpectedValue($this->exceptionParams[$key]['name'].' input value is not valid as format ('.$data.')'); |
75 | - } |
|
76 | - else{ |
|
75 | + } else{ |
|
77 | 76 | //catch exception |
78 | 77 | exception()->unexpectedValue($key.' input value is not valid as format ('.$data.')'); |
79 | 78 | } |
@@ -136,16 +135,14 @@ discard block |
||
136 | 135 | } |
137 | 136 | } |
138 | 137 | |
139 | - } |
|
140 | - else{ |
|
138 | + } else{ |
|
141 | 139 | if(!preg_match('@'.$regex[1].'@is',$this->inputsValue)){ |
142 | 140 | $this->catchException($key,$regex[1]); |
143 | 141 | } |
144 | 142 | } |
145 | 143 | |
146 | 144 | } |
147 | - } |
|
148 | - else{ |
|
145 | + } else{ |
|
149 | 146 | |
150 | 147 | // we control the regex rule that evaluates when only string arrives. |
151 | 148 | if(!preg_match('@'.$regex[1].'@is',$this->inputs[$key])){ |
@@ -194,8 +191,7 @@ discard block |
||
194 | 191 | } |
195 | 192 | } |
196 | 193 | } |
197 | - } |
|
198 | - else{ |
|
194 | + } else{ |
|
199 | 195 | |
200 | 196 | foreach ($this->inputs[$key] as $key=>$input){ |
201 | 197 | |
@@ -208,8 +204,7 @@ discard block |
||
208 | 204 | } |
209 | 205 | } |
210 | 206 | } |
211 | - } |
|
212 | - else{ |
|
207 | + } else{ |
|
213 | 208 | |
214 | 209 | foreach ($input as $ikey=>$item){ |
215 | 210 | foreach($rules as $rule){ |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | * @param ApplicationContracts $app |
22 | 22 | * @param $request |
23 | 23 | */ |
24 | - public function __construct(ApplicationContracts $app,$request) |
|
24 | + public function __construct(ApplicationContracts $app, $request) |
|
25 | 25 | { |
26 | 26 | parent::__construct($app); |
27 | 27 | |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | * @param $key |
38 | 38 | * @return mixed|void |
39 | 39 | */ |
40 | - public function annotation($method,$key) |
|
40 | + public function annotation($method, $key) |
|
41 | 41 | { |
42 | 42 | //set annotation value with getting reflection |
43 | 43 | $reflection = $this->getReflection('reflection')->reflectionMethodParams($method); |
@@ -62,18 +62,18 @@ discard block |
||
62 | 62 | * @param string $key |
63 | 63 | * @param null|string $data |
64 | 64 | */ |
65 | - private function catchException($key,$data) |
|
65 | + private function catchException($key, $data) |
|
66 | 66 | { |
67 | - if(isset($this->exceptionParams[$key])){ |
|
67 | + if (isset($this->exceptionParams[$key])) { |
|
68 | 68 | |
69 | 69 | //get key params for exception params |
70 | 70 | $keyParams = ($this->exceptionParams[$key]['params']) ?? []; |
71 | 71 | |
72 | 72 | //catch exception |
73 | - exception($this->exceptionParams[$key]['name'],$keyParams) |
|
73 | + exception($this->exceptionParams[$key]['name'], $keyParams) |
|
74 | 74 | ->unexpectedValue($this->exceptionParams[$key]['name'].' input value is not valid as format ('.$data.')'); |
75 | 75 | } |
76 | - else{ |
|
76 | + else { |
|
77 | 77 | //catch exception |
78 | 78 | exception()->unexpectedValue($key.' input value is not valid as format ('.$data.')'); |
79 | 79 | } |
@@ -86,23 +86,23 @@ discard block |
||
86 | 86 | */ |
87 | 87 | private function getException($key) |
88 | 88 | { |
89 | - if(preg_match('@exception\((.*?)\)\r\n@is',$this->annotation,$exception)){ |
|
89 | + if (preg_match('@exception\((.*?)\)\r\n@is', $this->annotation, $exception)) { |
|
90 | 90 | |
91 | - $exceptionSpaceExplode = explode(" ",$exception[1]); |
|
91 | + $exceptionSpaceExplode = explode(" ", $exception[1]); |
|
92 | 92 | |
93 | - foreach ($exceptionSpaceExplode as $exceptions){ |
|
94 | - $exceptionsDotExplode = explode(":",$exceptions); |
|
93 | + foreach ($exceptionSpaceExplode as $exceptions) { |
|
94 | + $exceptionsDotExplode = explode(":", $exceptions); |
|
95 | 95 | $this->exceptionParams[$key][$exceptionsDotExplode[0]] = $exceptionsDotExplode[1]; |
96 | 96 | } |
97 | 97 | |
98 | - if(isset($this->exceptionParams[$key]['params'])){ |
|
98 | + if (isset($this->exceptionParams[$key]['params'])) { |
|
99 | 99 | |
100 | - $paramsCommaExplode = explode(",",$this->exceptionParams[$key]['params']); |
|
100 | + $paramsCommaExplode = explode(",", $this->exceptionParams[$key]['params']); |
|
101 | 101 | unset($this->exceptionParams[$key]['params']); |
102 | 102 | |
103 | - foreach ($paramsCommaExplode as $params){ |
|
104 | - $paramsEqualExplode = explode("=",$params); |
|
105 | - if(isset($paramsEqualExplode[0]) && isset($paramsEqualExplode[1])){ |
|
103 | + foreach ($paramsCommaExplode as $params) { |
|
104 | + $paramsEqualExplode = explode("=", $params); |
|
105 | + if (isset($paramsEqualExplode[0]) && isset($paramsEqualExplode[1])) { |
|
106 | 106 | $this->exceptionParams[$key]['params'][$paramsEqualExplode[0]] = $paramsEqualExplode[1]; |
107 | 107 | } |
108 | 108 | } |
@@ -119,37 +119,37 @@ discard block |
||
119 | 119 | { |
120 | 120 | // with the method based regex annotation, |
121 | 121 | // we check the rule definition for our requests. |
122 | - if(preg_match('@regex\((.*?)\)\r\n@is',$this->annotation,$regex)){ |
|
123 | - if(isset($this->inputs[$key])){ |
|
122 | + if (preg_match('@regex\((.*?)\)\r\n@is', $this->annotation, $regex)) { |
|
123 | + if (isset($this->inputs[$key])) { |
|
124 | 124 | |
125 | 125 | // for the definition of rules, |
126 | 126 | // our inputs can be array and in this case we offer array option for user comfort. |
127 | - if(is_array($this->inputs[$key])){ |
|
127 | + if (is_array($this->inputs[$key])) { |
|
128 | 128 | |
129 | - foreach ($this->inputs[$key] as $this->inputsKey => $this->inputsValue){ |
|
129 | + foreach ($this->inputs[$key] as $this->inputsKey => $this->inputsValue) { |
|
130 | 130 | |
131 | - if(is_array($this->inputsValue)){ |
|
131 | + if (is_array($this->inputsValue)) { |
|
132 | 132 | |
133 | - foreach ($this->inputsValue as $inputsValueKey => $inputsValueItem){ |
|
134 | - if(!preg_match('@'.$regex[1].'@is',$inputsValueItem)){ |
|
135 | - $this->catchException($key,$regex[1]); |
|
133 | + foreach ($this->inputsValue as $inputsValueKey => $inputsValueItem) { |
|
134 | + if (!preg_match('@'.$regex[1].'@is', $inputsValueItem)) { |
|
135 | + $this->catchException($key, $regex[1]); |
|
136 | 136 | } |
137 | 137 | } |
138 | 138 | |
139 | 139 | } |
140 | - else{ |
|
141 | - if(!preg_match('@'.$regex[1].'@is',$this->inputsValue)){ |
|
142 | - $this->catchException($key,$regex[1]); |
|
140 | + else { |
|
141 | + if (!preg_match('@'.$regex[1].'@is', $this->inputsValue)) { |
|
142 | + $this->catchException($key, $regex[1]); |
|
143 | 143 | } |
144 | 144 | } |
145 | 145 | |
146 | 146 | } |
147 | 147 | } |
148 | - else{ |
|
148 | + else { |
|
149 | 149 | |
150 | 150 | // we control the regex rule that evaluates when only string arrives. |
151 | - if(!preg_match('@'.$regex[1].'@is',$this->inputs[$key])){ |
|
152 | - $this->catchException($key,$regex[1]); |
|
151 | + if (!preg_match('@'.$regex[1].'@is', $this->inputs[$key])) { |
|
152 | + $this->catchException($key, $regex[1]); |
|
153 | 153 | } |
154 | 154 | } |
155 | 155 | } |
@@ -164,9 +164,9 @@ discard block |
||
164 | 164 | */ |
165 | 165 | private function getRemove($key) |
166 | 166 | { |
167 | - if(preg_match('@remove\((.*?)\)\r\n@is',$this->annotation,$remove)){ |
|
168 | - if(isset($this->inputs[$key])){ |
|
169 | - if(preg_match('@'.$remove[1].'@is',$this->inputs[$key])){ |
|
167 | + if (preg_match('@remove\((.*?)\)\r\n@is', $this->annotation, $remove)) { |
|
168 | + if (isset($this->inputs[$key])) { |
|
169 | + if (preg_match('@'.$remove[1].'@is', $this->inputs[$key])) { |
|
170 | 170 | unset($this->inputs[$key]); |
171 | 171 | } |
172 | 172 | } |
@@ -180,42 +180,42 @@ discard block |
||
180 | 180 | */ |
181 | 181 | private function getRules($key) |
182 | 182 | { |
183 | - if(preg_match('@rule\((.*?)\)\r\n@is',$this->annotation,$rule)){ |
|
183 | + if (preg_match('@rule\((.*?)\)\r\n@is', $this->annotation, $rule)) { |
|
184 | 184 | |
185 | 185 | $requestRules = $this->getReflection('rules'); |
186 | 186 | |
187 | - $rules = explode(":",$rule[1]); |
|
188 | - if(isset($this->inputs[$key]) && !is_array($this->inputs[$key])){ |
|
189 | - foreach($rules as $rule){ |
|
190 | - if(isset($requestRules[$rule])){ |
|
191 | - if(!preg_match('@'.$requestRules[$rule].'@',$this->inputs[$key])){ |
|
192 | - exception($rule,['key'=>$this->inputs[$key]]) |
|
187 | + $rules = explode(":", $rule[1]); |
|
188 | + if (isset($this->inputs[$key]) && !is_array($this->inputs[$key])) { |
|
189 | + foreach ($rules as $rule) { |
|
190 | + if (isset($requestRules[$rule])) { |
|
191 | + if (!preg_match('@'.$requestRules[$rule].'@', $this->inputs[$key])) { |
|
192 | + exception($rule, ['key'=>$this->inputs[$key]]) |
|
193 | 193 | ->invalidArgument($this->inputs[$key].' input value is not valid for '.$rule.' request rule'); |
194 | 194 | } |
195 | 195 | } |
196 | 196 | } |
197 | 197 | } |
198 | - else{ |
|
198 | + else { |
|
199 | 199 | |
200 | - foreach ($this->inputs[$key] as $key=>$input){ |
|
200 | + foreach ($this->inputs[$key] as $key=>$input) { |
|
201 | 201 | |
202 | - if(!is_array($input)){ |
|
203 | - foreach($rules as $rule){ |
|
204 | - if(isset($requestRules[$rule])){ |
|
205 | - if(!preg_match('@'.$requestRules[$rule].'@',$input)){ |
|
206 | - exception($rule,['key'=>$input]) |
|
202 | + if (!is_array($input)) { |
|
203 | + foreach ($rules as $rule) { |
|
204 | + if (isset($requestRules[$rule])) { |
|
205 | + if (!preg_match('@'.$requestRules[$rule].'@', $input)) { |
|
206 | + exception($rule, ['key'=>$input]) |
|
207 | 207 | ->invalidArgument($input.' input value is not valid for '.$rule.' request rule'); |
208 | 208 | } |
209 | 209 | } |
210 | 210 | } |
211 | 211 | } |
212 | - else{ |
|
212 | + else { |
|
213 | 213 | |
214 | - foreach ($input as $ikey=>$item){ |
|
215 | - foreach($rules as $rule){ |
|
216 | - if(isset($requestRules[$rule])){ |
|
217 | - if(!preg_match('@'.$requestRules[$rule].'@',$item)){ |
|
218 | - exception($rule,['key'=>$item]) |
|
214 | + foreach ($input as $ikey=>$item) { |
|
215 | + foreach ($rules as $rule) { |
|
216 | + if (isset($requestRules[$rule])) { |
|
217 | + if (!preg_match('@'.$requestRules[$rule].'@', $item)) { |
|
218 | + exception($rule, ['key'=>$item]) |
|
219 | 219 | ->invalidArgument($item.' input value is not valid for '.$rule.' request rule'); |
220 | 220 | } |
221 | 221 | } |
@@ -8,89 +8,89 @@ |
||
8 | 8 | * @param null|string $msg |
9 | 9 | * @return mixed |
10 | 10 | */ |
11 | - public function accessDeniedHttpException($msg=null); |
|
11 | + public function accessDeniedHttpException($msg = null); |
|
12 | 12 | |
13 | 13 | /** |
14 | 14 | * @param null|string $msg |
15 | 15 | * @return mixed |
16 | 16 | */ |
17 | - public function invalidArgument($msg=null); |
|
17 | + public function invalidArgument($msg = null); |
|
18 | 18 | |
19 | 19 | /** |
20 | 20 | * @param null|string $msg |
21 | 21 | * @return mixed |
22 | 22 | */ |
23 | - public function badFunctionCall($msg=null); |
|
23 | + public function badFunctionCall($msg = null); |
|
24 | 24 | |
25 | 25 | /** |
26 | 26 | * @param null|string $msg |
27 | 27 | * @return mixed |
28 | 28 | */ |
29 | - public function badMethodCall($msg=null); |
|
29 | + public function badMethodCall($msg = null); |
|
30 | 30 | |
31 | 31 | /** |
32 | 32 | * @param null|string $msg |
33 | 33 | * @return mixed |
34 | 34 | */ |
35 | - public function domain($msg=null); |
|
35 | + public function domain($msg = null); |
|
36 | 36 | |
37 | 37 | /** |
38 | 38 | * @param null|string $msg |
39 | 39 | * @return mixed |
40 | 40 | */ |
41 | - public function length($msg=null); |
|
41 | + public function length($msg = null); |
|
42 | 42 | |
43 | 43 | /** |
44 | 44 | * @param null|string $msg |
45 | 45 | * @return mixed |
46 | 46 | */ |
47 | - public function logic($msg=null); |
|
47 | + public function logic($msg = null); |
|
48 | 48 | |
49 | 49 | /** |
50 | 50 | * @param null|string $msg |
51 | 51 | * @return mixed |
52 | 52 | */ |
53 | - public function notFoundException($msg=null); |
|
53 | + public function notFoundException($msg = null); |
|
54 | 54 | |
55 | 55 | /** |
56 | 56 | * @param null|string $msg |
57 | 57 | * @return mixed |
58 | 58 | */ |
59 | - public function fileNotFoundException($msg=null); |
|
59 | + public function fileNotFoundException($msg = null); |
|
60 | 60 | |
61 | 61 | /** |
62 | 62 | * @param null|string $msg |
63 | 63 | * @return mixed |
64 | 64 | */ |
65 | - public function outOfRange($msg=null); |
|
65 | + public function outOfRange($msg = null); |
|
66 | 66 | |
67 | 67 | /** |
68 | 68 | * @param null|string $msg |
69 | 69 | * @return mixed |
70 | 70 | */ |
71 | - public function overflow($msg=null); |
|
71 | + public function overflow($msg = null); |
|
72 | 72 | |
73 | 73 | /** |
74 | 74 | * @param null|string $msg |
75 | 75 | * @return mixed |
76 | 76 | */ |
77 | - public function range($msg=null); |
|
77 | + public function range($msg = null); |
|
78 | 78 | |
79 | 79 | /** |
80 | 80 | * @param null|string $msg |
81 | 81 | * @return mixed |
82 | 82 | */ |
83 | - public function runtime($msg=null); |
|
83 | + public function runtime($msg = null); |
|
84 | 84 | |
85 | 85 | /** |
86 | 86 | * @param null|string $msg |
87 | 87 | * @return mixed |
88 | 88 | */ |
89 | - public function underflow($msg=null); |
|
89 | + public function underflow($msg = null); |
|
90 | 90 | |
91 | 91 | /** |
92 | 92 | * @param null|string $msg |
93 | 93 | * @return mixed |
94 | 94 | */ |
95 | - public function unexpectedValue($msg=null); |
|
95 | + public function unexpectedValue($msg = null); |
|
96 | 96 | } |
97 | 97 | \ No newline at end of file |