Passed
Pull Request — master (#1126)
by
unknown
10:31
created
src/Http/tests/HttpTest.php 1 patch
Braces   +34 added lines, -17 removed lines patch added patch discarded remove patch
@@ -47,7 +47,8 @@  discard block
 block discarded – undo
47 47
     {
48 48
         $core = $this->getCore();
49 49
 
50
-        $core->setHandler(function () {
50
+        $core->setHandler(function ()
51
+        {
51 52
             return 'hello world';
52 53
         });
53 54
 
@@ -69,7 +70,8 @@  discard block
 block discarded – undo
69 70
     {
70 71
         $core = $this->getCore();
71 72
         $core->setHandler(
72
-            new CallableHandler(function () {
73
+            new CallableHandler(function ()
74
+            {
73 75
                 return 'hello world';
74 76
             }, new ResponseFactory(new HttpConfig(['headers' => []])))
75 77
         );
@@ -82,7 +84,8 @@  discard block
 block discarded – undo
82 84
     {
83 85
         $core = $this->getCore();
84 86
 
85
-        $core->setHandler(function ($req, $resp) {
87
+        $core->setHandler(function ($req, $resp)
88
+        {
86 89
             return $resp->withAddedHeader('hello', 'value');
87 90
         });
88 91
 
@@ -95,7 +98,8 @@  discard block
 block discarded – undo
95 98
     {
96 99
         $core = $this->getCore();
97 100
 
98
-        $core->setHandler(function ($req, $resp) {
101
+        $core->setHandler(function ($req, $resp)
102
+        {
99 103
             echo 'hello!';
100 104
 
101 105
             return $resp->withAddedHeader('hello', 'value');
@@ -111,7 +115,8 @@  discard block
 block discarded – undo
111 115
     {
112 116
         $core = $this->getCore();
113 117
 
114
-        $core->setHandler(function ($req, $resp) {
118
+        $core->setHandler(function ($req, $resp)
119
+        {
115 120
             echo 'hello!';
116 121
             $resp->getBody()->write('world ');
117 122
 
@@ -128,7 +133,8 @@  discard block
 block discarded – undo
128 133
     {
129 134
         $core = $this->getCore();
130 135
 
131
-        $core->setHandler(function () {
136
+        $core->setHandler(function ()
137
+        {
132 138
             ob_start();
133 139
             ob_start();
134 140
             echo 'hello!';
@@ -149,7 +155,8 @@  discard block
 block discarded – undo
149 155
     {
150 156
         $core = $this->getCore();
151 157
 
152
-        $core->setHandler(function () {
158
+        $core->setHandler(function ()
159
+        {
153 160
             return [
154 161
                 'status' => 404,
155 162
                 'message' => 'not found',
@@ -165,7 +172,8 @@  discard block
 block discarded – undo
165 172
     {
166 173
         $core = $this->getCore();
167 174
 
168
-        $core->setHandler(function () {
175
+        $core->setHandler(function ()
176
+        {
169 177
             return new Json([
170 178
                 'status' => 404,
171 179
                 'message' => 'not found',
@@ -181,7 +189,8 @@  discard block
 block discarded – undo
181 189
     {
182 190
         $core = $this->getCore([HeaderMiddleware::class]);
183 191
 
184
-        $core->setHandler(function () {
192
+        $core->setHandler(function ()
193
+        {
185 194
             return 'hello?';
186 195
         });
187 196
 
@@ -198,7 +207,8 @@  discard block
 block discarded – undo
198 207
         $core->getPipeline()->pushMiddleware(new Header2Middleware());
199 208
         $core->getPipeline()->riseMiddleware(new HeaderMiddleware());
200 209
 
201
-        $core->setHandler(function () {
210
+        $core->setHandler(function ()
211
+        {
202 212
             return 'hello?';
203 213
         });
204 214
 
@@ -215,7 +225,8 @@  discard block
 block discarded – undo
215 225
         $core->getPipeline()->pushMiddleware(new HeaderMiddleware());
216 226
         $core->getPipeline()->riseMiddleware(new Header2Middleware());
217 227
 
218
-        $core->setHandler(function () {
228
+        $core->setHandler(function ()
229
+        {
219 230
             return 'hello?';
220 231
         });
221 232
 
@@ -253,7 +264,8 @@  discard block
 block discarded – undo
253 264
 
254 265
         $core = $this->getCore();
255 266
 
256
-        $core->setHandler(function () {
267
+        $core->setHandler(function ()
268
+        {
257 269
             return 'hello world';
258 270
         });
259 271
 
@@ -274,7 +286,8 @@  discard block
 block discarded – undo
274 286
             $tracerFactory = m::mock(TracerFactoryInterface::class),
275 287
         );
276 288
 
277
-        $http->setHandler(function () {
289
+        $http->setHandler(function ()
290
+        {
278 291
             return 'hello world';
279 292
         });
280 293
 
@@ -301,7 +314,8 @@  discard block
 block discarded – undo
301 314
             $tracerFactory = m::mock(TracerFactoryInterface::class),
302 315
         );
303 316
 
304
-        $http->setHandler(function () {
317
+        $http->setHandler(function ()
318
+        {
305 319
             return 'hello world';
306 320
         });
307 321
 
@@ -325,7 +339,8 @@  discard block
 block discarded – undo
325 339
                 true,
326 340
                 TraceKind::SERVER
327 341
             )
328
-            ->andReturnUsing(function($name, $callback, $attributes, $scoped, $traceKind) {
342
+            ->andReturnUsing(function($name, $callback, $attributes, $scoped, $traceKind)
343
+            {
329 344
                 return $this->container->get(TracerInterface::class)->trace($name, $callback, $attributes, $scoped, $traceKind);
330 345
             });
331 346
 
@@ -351,7 +366,8 @@  discard block
 block discarded – undo
351 366
             $tracerFactory = m::mock(TracerFactoryInterface::class),
352 367
         );
353 368
 
354
-        $http->setHandler(function () {
369
+        $http->setHandler(function ()
370
+        {
355 371
             return 'hello world';
356 372
         });
357 373
 
@@ -364,7 +380,8 @@  discard block
 block discarded – undo
364 380
         $tracer
365 381
             ->shouldReceive('trace')
366 382
             ->once()
367
-            ->andReturnUsing(function($name, $callback, $attributes, $scoped, $traceKind) {
383
+            ->andReturnUsing(function($name, $callback, $attributes, $scoped, $traceKind)
384
+            {
368 385
                 return $this->container->get(TracerInterface::class)->trace($name, $callback, $attributes, $scoped, $traceKind);
369 386
             });
370 387
 
Please login to merge, or discard this patch.