@@ -120,7 +120,7 @@ |
||
120 | 120 | $container->setDefinition($eventServiceName, $eventService); |
121 | 121 | |
122 | 122 | // Create the event Dispatch Middleware |
123 | - $eventExpression = new Expression(sprintf("service('%s').dispatchEvent()", $eventServiceName)); |
|
123 | + $eventExpression = new Expression(sprintf("service('%s').dispatchEvent()", $eventServiceName)); |
|
124 | 124 | |
125 | 125 | $handler = new Definition(HandlerStack::class); |
126 | 126 | $handler->setFactory([HandlerStack::class, 'create']); |
@@ -39,9 +39,9 @@ discard block |
||
39 | 39 | */ |
40 | 40 | public function dispatchEvent() : \Closure |
41 | 41 | { |
42 | - return function (callable $handler) { |
|
42 | + return function(callable $handler) { |
|
43 | 43 | |
44 | - return function ( |
|
44 | + return function( |
|
45 | 45 | RequestInterface $request, |
46 | 46 | array $options |
47 | 47 | ) use ($handler) { |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | |
57 | 57 | // Handle the response form the server. |
58 | 58 | return $promise->then( |
59 | - function (ResponseInterface $response) { |
|
59 | + function(ResponseInterface $response) { |
|
60 | 60 | // Create the Post Transaction event. |
61 | 61 | $postTransactionEvent = new PostTransactionEvent($response, $this->serviceName); |
62 | 62 | |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | // Continue down the chain. |
67 | 67 | return $postTransactionEvent->getTransaction(); |
68 | 68 | }, |
69 | - function (Exception $reason) { |
|
69 | + function(Exception $reason) { |
|
70 | 70 | // Get the response. The response in a RequestException can be null too. |
71 | 71 | $response = $reason instanceof RequestException ? $reason->getResponse() : null; |
72 | 72 |
@@ -44,13 +44,13 @@ discard block |
||
44 | 44 | $logger = $this->logger; |
45 | 45 | $formatter = $this->formatter; |
46 | 46 | |
47 | - return function (callable $handler) use ($logger, $formatter) { |
|
47 | + return function(callable $handler) use ($logger, $formatter) { |
|
48 | 48 | |
49 | - return function ($request, array $options) use ($handler, $logger, $formatter) { |
|
49 | + return function($request, array $options) use ($handler, $logger, $formatter) { |
|
50 | 50 | |
51 | 51 | return $handler($request, $options)->then( |
52 | 52 | |
53 | - function ($response) use ($logger, $request, $formatter) { |
|
53 | + function($response) use ($logger, $request, $formatter) { |
|
54 | 54 | |
55 | 55 | $message = $formatter->format($request, $response); |
56 | 56 | $context = compact('request', 'response'); |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | return $response; |
61 | 61 | }, |
62 | 62 | |
63 | - function ($reason) use ($logger, $request, $formatter) { |
|
63 | + function($reason) use ($logger, $request, $formatter) { |
|
64 | 64 | |
65 | 65 | $response = $reason instanceof RequestException ? $reason->getResponse() : null; |
66 | 66 | $message = $formatter->format($request, $response, $reason); |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | */ |
27 | 27 | public function __invoke(callable $handler) : \Closure |
28 | 28 | { |
29 | - return function ( |
|
29 | + return function( |
|
30 | 30 | RequestInterface $request, |
31 | 31 | array $options |
32 | 32 | ) use ($handler) { |
@@ -47,12 +47,12 @@ discard block |
||
47 | 47 | */ |
48 | 48 | protected function getOnStatsCallback($initialOnStats) : \Closure |
49 | 49 | { |
50 | - return function (TransferStats $stats) use ($initialOnStats) { |
|
50 | + return function(TransferStats $stats) use ($initialOnStats) { |
|
51 | 51 | if (is_callable($initialOnStats)) { |
52 | 52 | call_user_func($initialOnStats, $stats); |
53 | 53 | } |
54 | 54 | |
55 | - $this->dataCollector->addTotalTime((float)$stats->getTransferTime()); |
|
55 | + $this->dataCollector->addTotalTime((float) $stats->getTransferTime()); |
|
56 | 56 | }; |
57 | 57 | } |
58 | 58 | } |
@@ -112,7 +112,7 @@ |
||
112 | 112 | */ |
113 | 113 | public function getErrorCount() : int |
114 | 114 | { |
115 | - return count(array_filter($this->getMessages(), function (LogMessage $message) { |
|
115 | + return count(array_filter($this->getMessages(), function(LogMessage $message) { |
|
116 | 116 | return $message->getLevel() === LogLevel::ERROR; |
117 | 117 | })); |
118 | 118 | } |
@@ -34,11 +34,11 @@ discard block |
||
34 | 34 | $logger = $this->logger; |
35 | 35 | $formatter = $this->formatter; |
36 | 36 | |
37 | - return function ($request, array $options) use ($handler, $logger, $formatter) { |
|
37 | + return function($request, array $options) use ($handler, $logger, $formatter) { |
|
38 | 38 | |
39 | 39 | return $handler($request, $options)->then( |
40 | 40 | |
41 | - function ($response) use ($logger, $request, $formatter) { |
|
41 | + function($response) use ($logger, $request, $formatter) { |
|
42 | 42 | $message = $formatter->format($request, $response); |
43 | 43 | |
44 | 44 | $logger->info($message); |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | return $response; |
47 | 47 | }, |
48 | 48 | |
49 | - function ($reason) use ($logger, $request, $formatter) { |
|
49 | + function($reason) use ($logger, $request, $formatter) { |
|
50 | 50 | $response = $reason instanceof RequestException ? $reason->getResponse() : null; |
51 | 51 | $message = $formatter->format($request, $response, $reason); |
52 | 52 |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | ->scalarNode('base_url') |
79 | 79 | ->defaultValue(null) |
80 | 80 | ->validate() |
81 | - ->ifTrue(function ($v) { |
|
81 | + ->ifTrue(function($v) { |
|
82 | 82 | return !is_string($v); |
83 | 83 | }) |
84 | 84 | ->thenInvalid('base_url can be: string') |
@@ -86,7 +86,7 @@ discard block |
||
86 | 86 | ->end() |
87 | 87 | ->arrayNode('options') |
88 | 88 | ->validate() |
89 | - ->ifTrue(function ($options) { |
|
89 | + ->ifTrue(function($options) { |
|
90 | 90 | return count($options['form_params']) && count($options['multipart']); |
91 | 91 | }) |
92 | 92 | ->thenInvalid('You cannot use form_params and multipart at the same time.') |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | ->end() |
100 | 100 | ->variableNode('allow_redirects') |
101 | 101 | ->validate() |
102 | - ->ifTrue(function ($v) { |
|
102 | + ->ifTrue(function($v) { |
|
103 | 103 | return !is_array($v) && !is_bool($v); |
104 | 104 | }) |
105 | 105 | ->thenInvalid('allow_redirects can be: bool or array') |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | ->end() |
108 | 108 | ->variableNode('auth') |
109 | 109 | ->validate() |
110 | - ->ifTrue(function ($v) { |
|
110 | + ->ifTrue(function($v) { |
|
111 | 111 | return !is_array($v) && !is_string($v); |
112 | 112 | }) |
113 | 113 | ->thenInvalid('auth can be: string or array') |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | ->end() |
116 | 116 | ->variableNode('query') |
117 | 117 | ->validate() |
118 | - ->ifTrue(function ($v) { |
|
118 | + ->ifTrue(function($v) { |
|
119 | 119 | return !is_string($v) && !is_array($v); |
120 | 120 | }) |
121 | 121 | ->thenInvalid('query can be: string or array') |
@@ -124,16 +124,16 @@ discard block |
||
124 | 124 | ->arrayNode('curl') |
125 | 125 | ->beforeNormalization() |
126 | 126 | ->ifArray() |
127 | - ->then(function (array $curlOptions) { |
|
127 | + ->then(function(array $curlOptions) { |
|
128 | 128 | $result = []; |
129 | 129 | |
130 | 130 | foreach ($curlOptions as $key => $value) { |
131 | - $optionName = 'CURLOPT_' . strtoupper($key); |
|
131 | + $optionName = 'CURLOPT_'.strtoupper($key); |
|
132 | 132 | |
133 | 133 | if (!defined($optionName)) { |
134 | 134 | throw new InvalidConfigurationException(sprintf( |
135 | - 'Invalid curl option in eight_points_guzzle: %s. ' . |
|
136 | - 'Ex: use sslversion for CURLOPT_SSLVERSION option. ' . PHP_EOL . |
|
135 | + 'Invalid curl option in eight_points_guzzle: %s. '. |
|
136 | + 'Ex: use sslversion for CURLOPT_SSLVERSION option. '.PHP_EOL. |
|
137 | 137 | 'See all available options: http://php.net/manual/en/function.curl-setopt.php', |
138 | 138 | $key |
139 | 139 | )); |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | ->end() |
151 | 151 | ->variableNode('cert') |
152 | 152 | ->validate() |
153 | - ->ifTrue(function ($v) { |
|
153 | + ->ifTrue(function($v) { |
|
154 | 154 | return !is_string($v) && (!is_array($v) || count($v) !== 2); |
155 | 155 | }) |
156 | 156 | ->thenInvalid('cert can be: string or array with two entries (path and password)') |
@@ -159,12 +159,12 @@ discard block |
||
159 | 159 | ->scalarNode('connect_timeout') |
160 | 160 | ->example('%env(float:CONNECT_TIMEOUT)%') |
161 | 161 | ->beforeNormalization() |
162 | - ->always(function ($v) { |
|
162 | + ->always(function($v) { |
|
163 | 163 | return is_numeric($v) ? (float) $v : $v; |
164 | 164 | }) |
165 | 165 | ->end() |
166 | 166 | ->validate() |
167 | - ->ifTrue(function ($v) { |
|
167 | + ->ifTrue(function($v) { |
|
168 | 168 | return !is_float($v) && !(is_string($v) && strpos($v, 'env_') === 0); |
169 | 169 | }) |
170 | 170 | ->thenInvalid('connect_timeout can be: float') |
@@ -173,7 +173,7 @@ discard block |
||
173 | 173 | ->booleanNode('debug')->end() |
174 | 174 | ->variableNode('decode_content') |
175 | 175 | ->validate() |
176 | - ->ifTrue(function ($v) { |
|
176 | + ->ifTrue(function($v) { |
|
177 | 177 | return !is_string($v) && !is_bool($v); |
178 | 178 | }) |
179 | 179 | ->thenInvalid('decode_content can be: bool or string (gzip, compress, deflate, etc...)') |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | ->end() |
191 | 191 | ->scalarNode('sink') |
192 | 192 | ->validate() |
193 | - ->ifTrue(function ($v) { |
|
193 | + ->ifTrue(function($v) { |
|
194 | 194 | return !is_string($v); |
195 | 195 | }) |
196 | 196 | ->thenInvalid('sink can be: string') |
@@ -199,7 +199,7 @@ discard block |
||
199 | 199 | ->booleanNode('http_errors')->end() |
200 | 200 | ->variableNode('expect') |
201 | 201 | ->validate() |
202 | - ->ifTrue(function ($v) { |
|
202 | + ->ifTrue(function($v) { |
|
203 | 203 | return !is_bool($v) && !is_int($v); |
204 | 204 | }) |
205 | 205 | ->thenInvalid('expect can be: bool or int') |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | ->end() |
208 | 208 | ->variableNode('ssl_key') |
209 | 209 | ->validate() |
210 | - ->ifTrue(function ($v) { |
|
210 | + ->ifTrue(function($v) { |
|
211 | 211 | return !is_string($v) && (!is_array($v) || count($v) !== 2); |
212 | 212 | }) |
213 | 213 | ->thenInvalid('ssl_key can be: string or array with two entries (path and password)') |
@@ -218,12 +218,12 @@ discard block |
||
218 | 218 | ->scalarNode('read_timeout') |
219 | 219 | ->example('%env(float:READ_TIMEOUT)%') |
220 | 220 | ->beforeNormalization() |
221 | - ->always(function ($v) { |
|
221 | + ->always(function($v) { |
|
222 | 222 | return is_numeric($v) ? (float) $v : $v; |
223 | 223 | }) |
224 | 224 | ->end() |
225 | 225 | ->validate() |
226 | - ->ifTrue(function ($v) { |
|
226 | + ->ifTrue(function($v) { |
|
227 | 227 | return !is_float($v) && !(is_string($v) && strpos($v, 'env_') === 0); |
228 | 228 | }) |
229 | 229 | ->thenInvalid('read_timeout can be: float') |
@@ -232,12 +232,12 @@ discard block |
||
232 | 232 | ->scalarNode('timeout') |
233 | 233 | ->example('%env(float:TIMEOUT)%') |
234 | 234 | ->beforeNormalization() |
235 | - ->always(function ($v) { |
|
235 | + ->always(function($v) { |
|
236 | 236 | return is_numeric($v) ? (float) $v : $v; |
237 | 237 | }) |
238 | 238 | ->end() |
239 | 239 | ->validate() |
240 | - ->ifTrue(function ($v) { |
|
240 | + ->ifTrue(function($v) { |
|
241 | 241 | return !is_float($v) && !(is_string($v) && strpos($v, 'env_') === 0); |
242 | 242 | }) |
243 | 243 | ->thenInvalid('timeout can be: float') |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | ->end() |
246 | 246 | ->variableNode('verify') |
247 | 247 | ->validate() |
248 | - ->ifTrue(function ($v) { |
|
248 | + ->ifTrue(function($v) { |
|
249 | 249 | return !is_bool($v) && !is_string($v); |
250 | 250 | }) |
251 | 251 | ->thenInvalid('verify can be: bool or string') |
@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | ->end() |
276 | 276 | ->scalarNode('version') |
277 | 277 | ->validate() |
278 | - ->ifTrue(function ($v) { |
|
278 | + ->ifTrue(function($v) { |
|
279 | 279 | return !is_string($v) && !is_float($v); |
280 | 280 | }) |
281 | 281 | ->thenInvalid('version can be: string or float') |