Completed
Push — master ( f790fc...ff27c7 )
by Welling
03:53
created
src/BaseClientRemote.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -247,8 +247,8 @@
 block discarded – undo
247 247
     /**
248 248
      * Perform a HTTP Request
249 249
      *
250
-     * @param $method
251
-     * @param $path
250
+     * @param string $method
251
+     * @param string $path
252 252
      * @param array $params
253 253
      *
254 254
      * @return Entry|EntryCollection
Please login to merge, or discard this patch.
src/ClientLocal.php 1 patch
Doc Comments   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     /**
48 48
      * ClientLocal constructor.
49 49
      *
50
-     * @param $connection
50
+     * @param Connection $connection
51 51
      */
52 52
     public function __construct($connection)
53 53
     {
@@ -246,6 +246,7 @@  discard block
 block discarded – undo
246 246
 
247 247
     /**
248 248
      * @inheritDoc
249
+     * @param string $tableName
249 250
      */
250 251
     public function createItem($tableName, array $data)
251 252
     {
@@ -265,6 +266,7 @@  discard block
 block discarded – undo
265 266
 
266 267
     /**
267 268
      * @inheritDoc
269
+     * @param string $tableName
268 270
      */
269 271
     public function updateItem($tableName, $id, array $data)
270 272
     {
Please login to merge, or discard this patch.
src/ClientRemote.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -195,6 +195,7 @@  discard block
 block discarded – undo
195 195
 
196 196
     /**
197 197
      * @inheritdoc
198
+     * @param string $tableName
198 199
      */
199 200
     public function createItem($tableName, array $data)
200 201
     {
@@ -206,6 +207,7 @@  discard block
 block discarded – undo
206 207
 
207 208
     /**
208 209
      * @inheritdoc
210
+     * @param string $tableName
209 211
      */
210 212
     public function updateItem($tableName, $id, array $data)
211 213
     {
Please login to merge, or discard this patch.