File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ public function __construct(
1414 {
1515 }
1616
17- public function send ($ notifiable , Notification $ notification )
17+ public function send ($ notifiable , Notification $ notification ): void
1818 {
1919 if (!$ recipient = $ notifiable ->routeNotificationFor ('Cmsms ' )) {
2020 return ;
Original file line number Diff line number Diff line change @@ -17,11 +17,9 @@ public function __construct(
1717 protected GuzzleClient $ client ,
1818 protected string $ productToken ,
1919 ) {
20- $ this ->client = $ client ;
21- $ this ->productToken = $ productToken ;
2220 }
2321
24- public function send (CmsmsMessage $ message , string $ recipient )
22+ public function send (CmsmsMessage $ message , string $ recipient ): void
2523 {
2624 if (is_null (Arr::get ($ message ->toXmlArray (), 'FROM ' ))) {
2725 $ message ->originator (config ('services.cmsms.originator ' ));
Original file line number Diff line number Diff line change 1010
1111class CmsmsServiceProvider extends ServiceProvider
1212{
13- public function boot ()
13+ public function boot (): void
1414 {
1515 $ this ->app ->when (CmsmsChannel::class)
1616 ->needs (CmsmsClient::class)
You can’t perform that action at this time.
0 commit comments