@@ -28,8 +28,7 @@ |
||
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) |
@@ -3,11 +3,9 @@ |
||
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 | { |
@@ -23,7 +23,6 @@ discard block |
||
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 |
||
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) |
@@ -2,8 +2,6 @@ |
||
2 | 2 | |
3 | 3 | namespace NotificationChannels\Jusibe; |
4 | 4 | |
5 | -use Illuminate\Support\Arr; |
|
6 | - |
|
7 | 5 | class JusibeMessage |
8 | 6 | { |
9 | 7 | /** |