diff options
author | Avi Goldman <avrahamymgoldman@gmail.com> | 2016-06-22 11:46:29 -0400 |
---|---|---|
committer | Avi Goldman <avrahamymgoldman@gmail.com> | 2016-06-22 11:46:29 -0400 |
commit | b1687e3d55960ba1810bb84be72c6307a6c5a2f3 (patch) | |
tree | 39b95cf55523dceb2d4216998139b19c49fa8595 /examples/transmission/get_all_transmissions.php | |
parent | 9cf58b85b7c771af97b5d95735c090551809db7f (diff) | |
download | php-sparkpost-b1687e3d55960ba1810bb84be72c6307a6c5a2f3.zip php-sparkpost-b1687e3d55960ba1810bb84be72c6307a6c5a2f3.tar.gz php-sparkpost-b1687e3d55960ba1810bb84be72c6307a6c5a2f3.tar.bz2 |
removed old tests
Diffstat (limited to 'examples/transmission/get_all_transmissions.php')
-rw-r--r-- | examples/transmission/get_all_transmissions.php | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/examples/transmission/get_all_transmissions.php b/examples/transmission/get_all_transmissions.php deleted file mode 100644 index c037b2d..0000000 --- a/examples/transmission/get_all_transmissions.php +++ /dev/null @@ -1,25 +0,0 @@ -<?php - -namespace Examples\Transmisson; - -require_once dirname(__FILE__).'/../bootstrap.php'; - -//pull in API key config -$configFile = file_get_contents(dirname(__FILE__).'/../example-config.json'); -$config = json_decode($configFile, true); - -use SparkPost\SparkPost; -use GuzzleHttp\Client; -use Ivory\HttpAdapter\Guzzle6HttpAdapter; - -$httpAdapter = new Guzzle6HttpAdapter(new Client()); -$sparky = new SparkPost($httpAdapter, ['key' => $config['api-key']]); - -try { - $results = $sparky->transmission->all(); - echo 'Congrats! You got a list of all your transmissions from SparkPost!'; -} catch (\Exception $exception) { - echo $exception->getAPIMessage()."\n"; - echo $exception->getAPICode()."\n"; - echo $exception->getAPIDescription()."\n"; -} |