We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d75c2d commit 0d7a989Copy full SHA for 0d7a989
appengine/flexible/twilio/app.php
@@ -28,6 +28,7 @@
28
);
29
};
30
31
+# [START receive_call]
32
/***
33
* Answers a call and replies with a simple greeting.
34
*/
@@ -40,8 +41,10 @@
40
41
['Content-Type' => 'application/xml']
42
43
});
44
+# [END receive_call]
45
46
47
+# [START send_sms]
48
49
* Send an sms.
50
@@ -56,7 +59,9 @@
56
59
57
60
return sprintf('Message ID: %s, Message Body: %s', $sms->sid, $sms->body);
58
61
62
+# [END send_sms]
63
64
+# [START receive_sms]
65
66
* Receive an sms.
67
@@ -73,5 +78,6 @@
73
78
74
79
75
80
81
+# [END receive_sms]
76
82
77
83
return $app;
0 commit comments