summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorbeardyman <nornholdj@gmail.com>2015-10-02 17:20:54 -0400
committerbeardyman <nornholdj@gmail.com>2015-10-02 17:20:54 -0400
commit1c386dcd13af959f8bb98115751b75f214c4e409 (patch)
treecdf54bbcf41f87ee1edc0aad272a5101de06f0af /lib
parent6818faa620c5b2e4f384d34e3156606938a2dbc1 (diff)
downloadphp-sparkpost-1c386dcd13af959f8bb98115751b75f214c4e409.zip
php-sparkpost-1c386dcd13af959f8bb98115751b75f214c4e409.tar.gz
php-sparkpost-1c386dcd13af959f8bb98115751b75f214c4e409.tar.bz2
Removed all tabs and replaced them with two spaces
Diffstat (limited to 'lib')
-rw-r--r--lib/SendGridCompatibility/Email.php2
-rw-r--r--lib/SendGridCompatibility/SendGrid.php2
-rw-r--r--lib/SparkPost/APIResource.php2
-rw-r--r--lib/SparkPost/SparkPost.php2
-rw-r--r--lib/SparkPost/Transmission.php2
5 files changed, 5 insertions, 5 deletions
diff --git a/lib/SendGridCompatibility/Email.php b/lib/SendGridCompatibility/Email.php
index 5351324..5576176 100644
--- a/lib/SendGridCompatibility/Email.php
+++ b/lib/SendGridCompatibility/Email.php
@@ -2,7 +2,7 @@
namespace SparkPost\SendGridCompatibility;
class Email {
- public $model;
+ public $model;
/**
diff --git a/lib/SendGridCompatibility/SendGrid.php b/lib/SendGridCompatibility/SendGrid.php
index b92457b..25e5d54 100644
--- a/lib/SendGridCompatibility/SendGrid.php
+++ b/lib/SendGridCompatibility/SendGrid.php
@@ -7,7 +7,7 @@ use SparkPost\SendGridCompatibility\Email;
class SendGrid{
private $sparky;
- public function __construct($username, $password, $options = null, $httpAdapter) {
+ public function __construct($username, $password, $options = null, $httpAdapter) {
//username isn't used in our system
$opts = array('key'=>$password);
if (!is_null($options)) {
diff --git a/lib/SparkPost/APIResource.php b/lib/SparkPost/APIResource.php
index 4c4cf08..d500963 100644
--- a/lib/SparkPost/APIResource.php
+++ b/lib/SparkPost/APIResource.php
@@ -8,7 +8,7 @@ use SparkPost\SparkPost;
*/
class APIResource {
- /**
+ /**
* @desc name of the API endpoint, mainly used for URL construction.
* This is public to provide an interface
*
diff --git a/lib/SparkPost/SparkPost.php b/lib/SparkPost/SparkPost.php
index 83200c0..d9dc3c8 100644
--- a/lib/SparkPost/SparkPost.php
+++ b/lib/SparkPost/SparkPost.php
@@ -21,7 +21,7 @@ class SparkPost {
* @desc Default config values. Passed in values will override these.
*/
private static $apiDefaults = [
- 'host'=>'api.sparkpost.com',
+ 'host'=>'api.sparkpost.com',
'protocol'=>'https',
'port'=>443,
'strictSSL'=>true,
diff --git a/lib/SparkPost/Transmission.php b/lib/SparkPost/Transmission.php
index 3b3c056..f811cdf 100644
--- a/lib/SparkPost/Transmission.php
+++ b/lib/SparkPost/Transmission.php
@@ -8,7 +8,7 @@ use Guzzle\Http\Exception\ClientErrorResponseException;
*/
class Transmission extends APIResource {
- public $endpoint = 'transmissions';
+ public $endpoint = 'transmissions';
/**
* @desc Mapping for values passed into the send method to the values needed for the Transmission API