Completed
Push — develop ( 66130e...e39ec3 )
by Adam
14:00
created
src/Common/Api/AbstractApi.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     }
65 65
 
66 66
     /**
67
-     * @param string|UriInterface $path
67
+     * @param string $path
68 68
      * @param array               $params
69 69
      * @param array               $headers
70 70
      *
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     }
83 83
 
84 84
     /**
85
-     * @param string|UriInterface $path
85
+     * @param string $path
86 86
      * @param array               $params
87 87
      * @param array               $headers
88 88
      *
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
     }
113 113
 
114 114
     /**
115
-     * @param string|UriInterface $path
115
+     * @param string $path
116 116
      * @param array               $params
117 117
      * @param array               $headers
118 118
      *
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
     }
130 130
 
131 131
     /**
132
-     * @param string|UriInterface $path
132
+     * @param string $path
133 133
      * @param array               $params
134 134
      * @param array               $headers
135 135
      *
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
     }
147 147
 
148 148
     /**
149
-     * @param string|UriInterface $path
149
+     * @param string $path
150 150
      * @param array               $params
151 151
      * @param array               $headers
152 152
      *
Please login to merge, or discard this patch.
src/Common/HttpClient/Builder.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@
 block discarded – undo
6 6
 
7 7
 use DateTime;
8 8
 use Http\Client\Common\Plugin;
9
-use Http\Client\Common\Plugin\AuthenticationPlugin;
10 9
 use Http\Client\Common\PluginClient;
10
+use Http\Client\Common\Plugin\AuthenticationPlugin;
11 11
 use Http\Client\HttpClient;
12 12
 use Http\Message\Authentication\BasicAuth;
13 13
 use Http\Message\UriFactory;
Please login to merge, or discard this patch.
src/ToneAnalyzer/tests/Api/ToneTest.php 1 patch
Unused Use Statements   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,11 +4,10 @@
 block discarded – undo
4 4
 
5 5
 namespace IBM\Watson\ToneAnalyzer\tests\Api;
6 6
 
7
-use IBM\Watson\ToneAnalyzer\Model\DocumentAnalysis;
8
-use Mockery as m;
9 7
 use IBM\Watson\Common\tests\Api\AbstractTestCase;
10 8
 use IBM\Watson\ToneAnalyzer\Api\Tone;
11 9
 use IBM\Watson\ToneAnalyzer\Model\ToneAnalysis;
10
+use Mockery as m;
12 11
 
13 12
 class ToneTest extends AbstractTestCase
14 13
 {
Please login to merge, or discard this patch.