Completed
Push — master ( d8d8be...82ddf6 )
by Luca
15s queued 11s
created
src/Models/TeamModel.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -295,7 +295,7 @@
 block discarded – undo
295 295
      * @param array $requestOptions
296 296
      * @return ResponseInterface
297 297
      */
298
-    public function getUserTotalUnreadMessagesFromTeams($userId,  array $requestOptions = [])
298
+    public function getUserTotalUnreadMessagesFromTeams($userId, array $requestOptions = [])
299 299
     {
300 300
         return $this->client->get(UserModel::$endpoint . '/' . $userId . '/teams/unread', $requestOptions);
301 301
     }
Please login to merge, or discard this patch.
src/Models/UserModel.php 3 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -484,7 +484,7 @@
 block discarded – undo
484 484
      */
485 485
     public function getUserIdsOfKnownUsers()
486 486
     {
487
-        return $this->client->get(self::$endpoint  . '/known');
487
+        return $this->client->get(self::$endpoint . '/known');
488 488
     }
489 489
 
490 490
     /**
Please login to merge, or discard this patch.
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -445,7 +445,6 @@
 block discarded – undo
445 445
 
446 446
     /**
447 447
      * @param       $userId
448
-     * @param array $requestOptions
449 448
      * @return ResponseInterface
450 449
      */
451 450
     public function removeUserCustomStatus($userId)
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@
 block discarded – undo
11 11
 
12 12
 namespace Gnello\Mattermost\Models;
13 13
 
14
-use GuzzleHttp\RequestOptions;
14
+use GuzzleHttp\RequestOptions;
15 15
 use Psr\Http\Message\ResponseInterface;
16 16
 
17 17
 /**
Please login to merge, or discard this patch.