@@ -66,7 +66,7 @@ |
||
| 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 | */ |
@@ -3,11 +3,11 @@ |
||
| 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 | { |
@@ -144,7 +144,7 @@ |
||
| 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 | */ |