Completed
Push — master ( 7f0890...bb87b9 )
by Abdullah
02:52
created
src/ZendeskChannel.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace NotificationChannels\Zendesk;
4 4
 
5
-use Illuminate\Support\Arr;
6
-use Zendesk\API\HttpClient;
7 5
 use Illuminate\Notifications\Notification;
6
+use Illuminate\Support\Arr;
8 7
 use NotificationChannels\Zendesk\Exceptions\CouldNotSendNotification;
8
+use Zendesk\API\HttpClient;
9 9
 
10 10
 class ZendeskChannel
11 11
 {
Please login to merge, or discard this patch.
src/Events/ZendeskTicketWasCreated.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
     /**
10 10
      * Create a new event instance.
11 11
      *
12
-     * @param $ticket
12
+     * @param \stdClass|null $ticket
13 13
      * @return void
14 14
      */
15 15
     public function __construct($ticket)
Please login to merge, or discard this patch.
src/Events/ZendeskTicketWasUpdated.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
     /**
10 10
      * Create a new event instance.
11 11
      *
12
-     * @param $ticket
12
+     * @param null|\stdClass $ticket
13 13
      * @return void
14 14
      */
15 15
     public function __construct($ticket)
Please login to merge, or discard this patch.