Completed
Push — develop ( b48ec5...ad5b3d )
by Nate
08:03
created
src/services/resources/CompanyContacts.php 1 patch
Doc Comments   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
      * @param CompanyContactsBuilderInterface $builder
187 187
      * @param ConnectionInterface|null $connection
188 188
      * @param CacheInterface|null $cache
189
-     * @return callable
189
+     * @return \Flipbox\Relay\Runner\Runner
190 190
      * @throws \yii\base\InvalidConfigException
191 191
      */
192 192
     public function httpAddRelay(
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
      * @param string $contactId
208 208
      * @param ConnectionInterface|null $connection
209 209
      * @param CacheInterface|null $cache
210
-     * @return callable
210
+     * @return \Flipbox\Relay\Runner\Runner
211 211
      * @throws \yii\base\InvalidConfigException
212 212
      */
213 213
     public function rawHttpAddRelay(
@@ -248,8 +248,8 @@  discard block
 block discarded – undo
248 248
     /**
249 249
      * @param string $companyId
250 250
      * @param string $contactId
251
-     * @param ConnectionInterface|null $connection
252
-     * @param CacheInterface|null $cache
251
+     * @param ConnectionInterface $connection
252
+     * @param CacheInterface $cache
253 253
      * @return ResponseInterface
254 254
      * @throws \yii\base\InvalidConfigException
255 255
      */
@@ -384,7 +384,7 @@  discard block
 block discarded – undo
384 384
      * @param CompanyContactsBuilderInterface $builder
385 385
      * @param ConnectionInterface|null $connection
386 386
      * @param CacheInterface|null $cache
387
-     * @return callable
387
+     * @return \Flipbox\Relay\Runner\Runner
388 388
      * @throws \yii\base\InvalidConfigException
389 389
      */
390 390
     public function httpRemoveRelay(
@@ -405,7 +405,7 @@  discard block
 block discarded – undo
405 405
      * @param string $contactId
406 406
      * @param ConnectionInterface|null $connection
407 407
      * @param CacheInterface|null $cache
408
-     * @return callable
408
+     * @return \Flipbox\Relay\Runner\Runner
409 409
      * @throws \yii\base\InvalidConfigException
410 410
      */
411 411
     public function rawHttpRemoveRelay(
@@ -446,8 +446,8 @@  discard block
 block discarded – undo
446 446
     /**
447 447
      * @param string $companyId
448 448
      * @param string $contactId
449
-     * @param ConnectionInterface|null $connection
450
-     * @param CacheInterface|null $cache
449
+     * @param ConnectionInterface $connection
450
+     * @param CacheInterface $cache
451 451
      * @return ResponseInterface
452 452
      * @throws \yii\base\InvalidConfigException
453 453
      */
Please login to merge, or discard this patch.
src/services/resources/traits/ReadObjectTrait.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -164,7 +164,7 @@
 block discarded – undo
164 164
     }
165 165
 
166 166
     /**
167
-     * @param $id
167
+     * @param string|null $id
168 168
      * @param ConnectionInterface|null $connection
169 169
      * @param CacheInterface|null $cache
170 170
      * @return ResponseInterface
Please login to merge, or discard this patch.
src/services/resources/traits/UpdateObjectTrait.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -172,8 +172,8 @@
 block discarded – undo
172 172
     /**
173 173
      * @param string $id
174 174
      * @param array $payload
175
-     * @param ConnectionInterface|null $connection
176
-     * @param CacheInterface|null $cache
175
+     * @param ConnectionInterface $connection
176
+     * @param CacheInterface $cache
177 177
      * @return ResponseInterface
178 178
      * @throws \yii\base\InvalidConfigException
179 179
      */
Please login to merge, or discard this patch.