Completed
Pull Request — master (#1808)
by Tobias
05:20
created
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.
src/Aggregation/WeightedAvg.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     /**
51 51
      * Set the weight for this aggregation.
52 52
      *
53
-     * @param mixed $missing
53
+     * @param integer $missing
54 54
      *
55 55
      * @return $this
56 56
      */
@@ -98,7 +98,6 @@  discard block
 block discarded – undo
98 98
     /**
99 99
      * Set the value_type for this aggregation.
100 100
      *
101
-     * @param string $format
102 101
      * @param mixed  $valueType
103 102
      *
104 103
      * @return $this
Please login to merge, or discard this patch.
tests/ClientConfigurationTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
     {
74 74
         $configuration = ClientConfiguration::fromDsn('pool(http://[email protected] http://127.0.0.2/bar?timeout=4)?extra=abc&username=tobias');
75 75
         $expected = [
76
-             'host' => null,
76
+                'host' => null,
77 77
             'port' => null,
78 78
             'path' => null,
79 79
             'url' => null,
Please login to merge, or discard this patch.