Completed
Push — d64 ( 2002c2...cb45b2 )
by Welling
02:09
created
src/ClientLocal.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
     /**
41 41
      * ClientLocal constructor.
42 42
      *
43
-     * @param $connection
43
+     * @param Connection $connection
44 44
      */
45 45
     public function __construct($connection)
46 46
     {
@@ -194,6 +194,7 @@  discard block
 block discarded – undo
194 194
 
195 195
     /**
196 196
      * @inheritDoc
197
+     * @param string $tableName
197 198
      */
198 199
     public function createEntry($tableName, array $data)
199 200
     {
@@ -205,6 +206,7 @@  discard block
 block discarded – undo
205 206
 
206 207
     /**
207 208
      * @inheritDoc
209
+     * @param string $tableName
208 210
      */
209 211
     public function updateEntry($tableName, $id, array $data)
210 212
     {
@@ -216,6 +218,7 @@  discard block
 block discarded – undo
216 218
 
217 219
     /**
218 220
      * @inheritDoc
221
+     * @param string $tableName
219 222
      */
220 223
     public function deleteEntry($tableName, $ids)
221 224
     {
Please login to merge, or discard this patch.
src/ClientRemote.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -59,6 +59,7 @@  discard block
 block discarded – undo
59 59
 
60 60
     /**
61 61
      * @inheritdoc
62
+     * @param string $tableName
62 63
      */
63 64
     public function getEntries($tableName, array $options = [])
64 65
     {
@@ -69,6 +70,7 @@  discard block
 block discarded – undo
69 70
 
70 71
     /**
71 72
      * @inheritdoc
73
+     * @param string $id
72 74
      */
73 75
     public function getEntry($tableName, $id, array $options = [])
74 76
     {
@@ -169,6 +171,7 @@  discard block
 block discarded – undo
169 171
 
170 172
     /**
171 173
      * @inheritdoc
174
+     * @param string $tableName
172 175
      */
173 176
     public function createEntry($tableName, array $data)
174 177
     {
@@ -180,6 +183,7 @@  discard block
 block discarded – undo
180 183
 
181 184
     /**
182 185
      * @inheritdoc
186
+     * @param string $tableName
183 187
      */
184 188
     public function updateEntry($tableName, $id, array $data)
185 189
     {
@@ -191,6 +195,7 @@  discard block
 block discarded – undo
191 195
 
192 196
     /**
193 197
      * @inheritdoc
198
+     * @param string $tableName
194 199
      */
195 200
     public function deleteEntry($tableName, $id)
196 201
     {
Please login to merge, or discard this patch.