Completed
Branch master (2720d7)
by PROSPER
06:17
created
src/JusibeChannel.php 2 patches
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,8 +28,7 @@
 block discarded – undo
28 28
     /**
29 29
      * Create a new Jusibe channel instance.
30 30
      *
31
-     * @param  \Jusibe\Jusibe  $jusibe
32
-     * @param  string  $from
31
+     * @param  JusibeClient  $jusibe
33 32
      * @return void
34 33
      */
35 34
     public function __construct(JusibeClient $jusibe)
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,11 +3,9 @@
 block discarded – undo
3 3
 namespace NotificationChannels\Jusibe;
4 4
 
5 5
 use DomainException;
6
-use Unicodeveloper\Jusibe\Jusibe as JusibeClient;
7 6
 use Illuminate\Notifications\Notification;
8
-use NotificationChannels\Jusibe\Events\SendingMessage;
9
-use NotificationChannels\Jusibe\Events\MessageWasSent;
10 7
 use NotificationChannels\Jusibe\Exceptions\CouldNotSendNotification;
8
+use Unicodeveloper\Jusibe\Jusibe as JusibeClient;
11 9
 
12 10
 class JusibeChannel
13 11
 {
Please login to merge, or discard this patch.
src/JusibeMessage.php 2 patches
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,6 @@  discard block
 block discarded – undo
23 23
     /**
24 24
      * Create a new message instance.
25 25
      *
26
-     * @param  string  $message
27 26
      * @return void
28 27
      */
29 28
     public function __construct($content = '')
@@ -47,7 +46,6 @@  discard block
 block discarded – undo
47 46
     /**
48 47
      * Set the phone number the message should be sent from.
49 48
      *
50
-     * @param  string  $number
51 49
      * @return $this
52 50
      */
53 51
     public function from($from)
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace NotificationChannels\Jusibe;
4 4
 
5
-use Illuminate\Support\Arr;
6
-
7 5
 class JusibeMessage
8 6
 {
9 7
     /**
Please login to merge, or discard this patch.