Skip to content

Commit

Permalink
Release Library 5.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
codejudas committed Apr 27, 2017
1 parent ef5a12c commit 7ba0ff8
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Twilio/VersionInfo.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

class VersionInfo {
const MAJOR = 5;
const MINOR = 7;
const PATCH = 3;
const MINOR = 8;
const PATCH = 0;

public static function string() {
return implode('.', array(self::MAJOR, self::MINOR, self::PATCH));
Expand Down
20 changes: 20 additions & 0 deletions test.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<?php

require 'vendor/autoload.php';

use Twilio\Rest\Client;

$client = new Client("ACb43d7209487f2797fb93c284cb46103b", "1698bb9b93e465b6d8eccca91add41bb", null, "stage");


print("Getting recordings\n");
$recordings = $client->recordings->page();
// print_r($recordings);

print("\nGetting calls\n");
$call = $client->calls("CAe891c5946fede836551f64ddded4b328");
// print_r($call);

// print("Gettings recordings for call");
//$call_recordings = $call->recordings->read();
// print_r($call_recordings);
9 changes: 9 additions & 0 deletions test3.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?php

require 'vendor/autoload.php';

use Twilio\Rest\Client;

$client = new Client("ACa331707952cd0205ce5c916958c2344b", "95ba0d225baa6813b50fea5afaa8caa5");

$client->preview->sync->services('IS7cfe0487fd836f0cffe3d7e685aa48e2')->syncLists('ES5ddc228ee636487a9bb8a586e4f15218')->syncListItems->create(array("evan"=> "rocks"));

0 comments on commit 7ba0ff8

Please sign in to comment.