Skip to content

Commit c13e6f7

Browse files
committedNov 30, 2019
updated fax report route and method signature
1 parent b8c23da commit c13e6f7

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed
 

‎composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "i-rocky/laravel-twilio",
33
"description": "Twilio Fax, SMS, MMS, Voice Call recording, receiving, sending support for laravel",
4-
"version": "1.0.1",
4+
"version": "1.1.0",
55
"type": "library",
66
"license": "MIT",
77
"authors": [

‎src/Message/TwilioFaxMessage.php

+9-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ class TwilioFaxMessage extends TwilioMessage
1414
protected $_mediaUrlRequired = true;
1515
protected $_type = 'Fax';
1616

17+
/**
18+
* @return string
19+
*/
20+
protected function _getStatusCallbackRoute(): string
21+
{
22+
return route('api.laravel-twilio.fax.report');
23+
}
24+
1725
/**
1826
* @param $notifiable
1927
* @param LaravelTwilio $laravelTwilio
@@ -36,7 +44,7 @@ public function send($notifiable, LaravelTwilio $laravelTwilio)
3644
->faxes
3745
->create($receiver, $mediaUrl, [
3846
'from' => $sender,
39-
'statusCallback' => $this->_getStatusCallbackRoute($laravelTwilio),
47+
'statusCallback' => $this->_getStatusCallbackRoute(),
4048
]);
4149
}
4250
}

‎src/Message/TwilioMMSMessage.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function send($notifiable, LaravelTwilio $laravelTwilio)
3939
'body' => $content,
4040
'from' => $sender,
4141
'mediaUrl' => $mediaUrl,
42-
'statusCallback' => $this->_getStatusCallbackRoute($laravelTwilio),
42+
'statusCallback' => $this->_getStatusCallbackRoute(),
4343
]);
4444
}
4545
}

‎src/Message/TwilioSMSMessage.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function send($notifiable, LaravelTwilio $laravelTwilio)
3535
->create($receiver, [
3636
'body' => $content,
3737
'from' => $sender,
38-
'statusCallback' => $this->_getStatusCallbackRoute($laravelTwilio),
38+
'statusCallback' => $this->_getStatusCallbackRoute(),
3939
]);
4040
}
4141
}

0 commit comments

Comments
 (0)
Please sign in to comment.