Completed
Pull Request — master (#7)
by
unknown
02:17
created
src/TrelloChannel.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
      * Add comments to newly created card.
67 67
      * @param mixed $notifiable
68 68
      * @param array  $trelloCardComments array holding the comments to add
69
-     * @param Response $response           response object from the trello api
69
+     * @param \Psr\Http\Message\ResponseInterface $response           response object from the trello api
70 70
      *
71 71
      * @throws \NotificationChannels\Trello\Exceptions\CouldAddComment
72 72
      */
Please login to merge, or discard this patch.
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -3,11 +3,11 @@
 block discarded – undo
3 3
 namespace NotificationChannels\Trello;
4 4
 
5 5
 use GuzzleHttp\Client;
6
-use Illuminate\Support\Arr;
7 6
 use Illuminate\Notifications\Notification;
7
+use Illuminate\Support\Arr;
8 8
 use NotificationChannels\Trello\Exceptions\CouldNotAddComment;
9
-use NotificationChannels\Trello\Exceptions\InvalidConfiguration;
10 9
 use NotificationChannels\Trello\Exceptions\CouldNotSendNotification;
10
+use NotificationChannels\Trello\Exceptions\InvalidConfiguration;
11 11
 
12 12
 class TrelloChannel
13 13
 {
Please login to merge, or discard this patch.
src/TrelloMessage.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@
 block discarded – undo
144 144
     /**
145 145
      * Add a comment to the card.
146 146
      *
147
-     * @param array $comments
147
+     * @param array $comment
148 148
      *
149 149
      * @return $this
150 150
      */
Please login to merge, or discard this patch.