Completed
Pull Request — master (#1867)
by
unknown
11:14
created
tests/Connection/Strategy/SimpleTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
         ];
64 64
 
65 65
         $count = 0;
66
-        $callback = function ($connection, $exception, $client) use (&$count): void {
66
+        $callback = function($connection, $exception, $client) use (&$count): void {
67 67
             ++$count;
68 68
         };
69 69
 
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
         ];
93 93
 
94 94
         $count = 0;
95
-        $client = $this->_getClient([], function () use (&$count): void {
95
+        $client = $this->_getClient([], function() use (&$count): void {
96 96
             ++$count;
97 97
         });
98 98
 
Please login to merge, or discard this patch.
tests/Connection/Strategy/StrategyFactoryTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      */
23 23
     public function testCreateCallbackStrategy(): void
24 24
     {
25
-        $callback = function ($connections): void {
25
+        $callback = function($connections): void {
26 26
         };
27 27
 
28 28
         $strategy = StrategyFactory::create($callback);
Please login to merge, or discard this patch.
tests/Query/MultiMatchTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,10 +14,10 @@
 block discarded – undo
14 14
 class MultiMatchTest extends BaseTest
15 15
 {
16 16
     private static $data = [
17
-        ['id' => 1, 'name' => 'Rodolfo', 'last_name' => 'Moraes',   'full_name' => 'Rodolfo Moraes'],
17
+        ['id' => 1, 'name' => 'Rodolfo', 'last_name' => 'Moraes', 'full_name' => 'Rodolfo Moraes'],
18 18
         ['id' => 2, 'name' => 'Tristan', 'last_name' => 'Maindron', 'full_name' => 'Tristan Maindron'],
19 19
         ['id' => 3, 'name' => 'Monique', 'last_name' => 'Maindron', 'full_name' => 'Monique Maindron'],
20
-        ['id' => 4, 'name' => 'John',    'last_name' => 'not Doe',  'full_name' => 'John not Doe'],
20
+        ['id' => 4, 'name' => 'John', 'last_name' => 'not Doe', 'full_name' => 'John not Doe'],
21 21
     ];
22 22
 
23 23
     /**
Please login to merge, or discard this patch.