Skip to content

Commit 5dcc9a5

Browse files
Correct return types in dummy implementation class
1 parent 393545f commit 5dcc9a5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/Dummy.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ class Dummy implements TwilioInterface
77
* @param string $to
88
* @param string $message
99
* @param string $from
10+
*
11+
* @return \Services_Twilio_Rest_Call|void
1012
*/
1113
public function message($to, $message, $from = null)
1214
{
@@ -17,6 +19,8 @@ public function message($to, $message, $from = null)
1719
* @param string $message
1820
* @param array $mediaUrls
1921
* @param string $from
22+
*
23+
* @return \Services_Twilio_Rest_Call|void
2024
*/
2125
public function messageWithMedia($to, $message, array $mediaUrls = null, $from = null)
2226
{
@@ -27,6 +31,8 @@ public function messageWithMedia($to, $message, array $mediaUrls = null, $from =
2731
* @param string|callable $message
2832
* @param array $options
2933
* @param string $from
34+
*
35+
* @return \Services_Twilio_Rest_Call|void
3036
*/
3137
public function call($to, $message, array $options = [], $from = null)
3238
{

0 commit comments

Comments
 (0)