Skip to content
This repository was archived by the owner on Aug 15, 2024. It is now read-only.

Commit 2855c5c

Browse files
author
childish-sambino
authored
chore: update PHP helper lib references to use 'main' branch (#839)
1 parent d77456c commit 2855c5c

File tree

10 files changed

+10
-10
lines changed

10 files changed

+10
-10
lines changed

quickstart/php/sms/reply_sms_without_composer/reply_sms.5.x.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
// Include the bundled autoload from the Twilio PHP Helper Library
3-
require __DIR__ . '/twilio-php-master/src/Twilio/autoload.php';
3+
require __DIR__ . '/twilio-php-main/src/Twilio/autoload.php';
44
use Twilio\TwiML\MessagingResponse;
55
// Set the content-type to XML to send back TwiML from the PHP Helper Library
66
header("content-type: text/xml");

quickstart/php/sms/send_sms_without_composer/send_sms.5.x.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
// Include the bundled autoload from the Twilio PHP Helper Library
3-
require __DIR__ . '/twilio-php-master/src/Twilio/autoload.php';
3+
require __DIR__ . '/twilio-php-main/src/Twilio/autoload.php';
44
use Twilio\Rest\Client;
55
// Your Account SID and Auth Token from twilio.com/console
66
$account_sid = 'ACXXXXXXXXXXXXXXXXXXXXXXXXXXXX';

quickstart/php/voice/answer_call_without_composer/answer_call.5.x.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
// Include the bundled autoload from the Twilio PHP Helper Library
3-
require __DIR__ . '/twilio-php-master/src/Twilio/autoload.php';
3+
require __DIR__ . '/twilio-php-main/src/Twilio/autoload.php';
44
use Twilio\TwiML\VoiceResponse;
55

66
// Start our TwiML response

quickstart/php/voice/make_call_without_composer/make_call.5.x.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
// Include the bundled autoload from the Twilio PHP Helper Library
3-
require __DIR__ . '/twilio-php-master/src/Twilio/autoload.php';
3+
require __DIR__ . '/twilio-php-main/src/Twilio/autoload.php';
44
use Twilio\Rest\Client;
55

66
// Your Account SID and Auth Token from twilio.com/console

video/rest/rooms/participants/kick-remove-participant/remove-participant.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
// Get the PHP helper library from twilio.com/docs/php/install
3-
require __DIR__ . '/twilio-php-master/Twilio/autoload.php'; // Loads the library
3+
require __DIR__ . '/twilio-php-main/Twilio/autoload.php'; // Loads the library
44
use Twilio\Rest\Client;
55

66
// Your Account Sid and Auth Token from twilio.com/console

video/rest/rooms/participants/published-track/retrieve-track-published-by-participant/retrieve-track-published-by-participant.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
// Get the PHP helper library from twilio.com/docs/php/install
3-
require __DIR__ . '/twilio-php-master/Twilio/autoload.php'; // Loads the library
3+
require __DIR__ . '/twilio-php-main/Twilio/autoload.php'; // Loads the library
44
use Twilio\Rest\Client;
55

66
// Your Account Sid and Auth Token from twilio.com/console

video/rest/rooms/participants/published-track/retrieve-tracks-published-by-participant/retrieve-tracks-published-by-participant.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
// Get the PHP helper library from twilio.com/docs/php/install
3-
require __DIR__ . '/twilio-php-master/Twilio/autoload.php'; // Loads the library
3+
require __DIR__ . '/twilio-php-main/Twilio/autoload.php'; // Loads the library
44
use Twilio\Rest\Client;
55

66
// Your Account Sid and Auth Token from twilio.com/console

video/rest/rooms/participants/retrieve-participant-list-connected/retrieve-participants-connected.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
// Get the PHP helper library from twilio.com/docs/php/install
3-
require __DIR__ . '/twilio-php-master/Twilio/autoload.php'; // Loads the library
3+
require __DIR__ . '/twilio-php-main/Twilio/autoload.php'; // Loads the library
44
use Twilio\Rest\Client;
55

66
// Your Account Sid and Auth Token from twilio.com/console

video/rest/rooms/participants/retrieve-participant-list-disconnected/retrieve-participants-disconnected.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
// Get the PHP helper library from twilio.com/docs/php/install
3-
require __DIR__ . '/twilio-php-master/Twilio/autoload.php'; // Loads the library
3+
require __DIR__ . '/twilio-php-main/Twilio/autoload.php'; // Loads the library
44
use Twilio\Rest\Client;
55

66
// Your Account Sid and Auth Token from twilio.com/console

video/rest/rooms/participants/retrieve-participant/retrieve-a-participant.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
// Get the PHP helper library from twilio.com/docs/php/install
3-
require __DIR__ . '/twilio-php-master/Twilio/autoload.php'; // Loads the library
3+
require __DIR__ . '/twilio-php-main/Twilio/autoload.php'; // Loads the library
44
use Twilio\Rest\Client;
55

66
// Your Account Sid and Auth Token from twilio.com/console

0 commit comments

Comments
 (0)