Skip to content

Commit

Permalink
Merge pull request #289 from issei-m/master
Browse files Browse the repository at this point in the history
Replace "\jsonSerializable" with "\JsonSerializable"
  • Loading branch information
thinkingserious authored Sep 13, 2016
2 parents 177aa04 + 54cc5a4 commit 25ee479
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions lib/helpers/mail/Mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
namespace SendGrid;

class ReplyTo implements \jsonSerializable
class ReplyTo implements \JsonSerializable
{
private
$email;
Expand Down Expand Up @@ -42,7 +42,7 @@ public function jsonSerialize()
}
}

class ClickTracking implements \jsonSerializable
class ClickTracking implements \JsonSerializable
{
private
$enable,
Expand Down Expand Up @@ -79,7 +79,7 @@ public function jsonSerialize()
}
}

class OpenTracking implements \jsonSerializable
class OpenTracking implements \JsonSerializable
{
private
$enable,
Expand Down Expand Up @@ -116,7 +116,7 @@ public function jsonSerialize()
}
}

class SubscriptionTracking implements \jsonSerializable
class SubscriptionTracking implements \JsonSerializable
{
private
$enable,
Expand Down Expand Up @@ -177,7 +177,7 @@ public function jsonSerialize()
}
}

class Ganalytics implements \jsonSerializable
class Ganalytics implements \JsonSerializable
{
private
$enable,
Expand Down Expand Up @@ -262,7 +262,7 @@ public function jsonSerialize()
}
}

class TrackingSettings implements \jsonSerializable
class TrackingSettings implements \JsonSerializable
{
private
$click_tracking,
Expand Down Expand Up @@ -323,7 +323,7 @@ public function jsonSerialize()
}
}

class BccSettings implements \jsonSerializable
class BccSettings implements \JsonSerializable
{
private
$enable,
Expand Down Expand Up @@ -360,7 +360,7 @@ public function jsonSerialize()
}
}

class BypassListManagement implements \jsonSerializable
class BypassListManagement implements \JsonSerializable
{
private
$enable;
Expand All @@ -385,7 +385,7 @@ public function jsonSerialize()
}
}

class Footer implements \jsonSerializable
class Footer implements \JsonSerializable
{
private
$enable,
Expand Down Expand Up @@ -434,7 +434,7 @@ public function jsonSerialize()
}
}

class SandBoxMode implements \jsonSerializable
class SandBoxMode implements \JsonSerializable
{
private
$enable;
Expand All @@ -458,7 +458,7 @@ public function jsonSerialize()
}
}

class SpamCheck implements \jsonSerializable
class SpamCheck implements \JsonSerializable
{
private
$enable,
Expand Down Expand Up @@ -507,7 +507,7 @@ public function jsonSerialize()
}
}

class MailSettings implements \jsonSerializable
class MailSettings implements \JsonSerializable
{
private
$bcc,
Expand Down Expand Up @@ -580,7 +580,7 @@ public function jsonSerialize()
}
}

class ASM implements \jsonSerializable
class ASM implements \JsonSerializable
{
private
$group_id,
Expand Down Expand Up @@ -617,7 +617,7 @@ public function jsonSerialize()
}
}

class Attachment implements \jsonSerializable
class Attachment implements \JsonSerializable
{
private
$content,
Expand Down Expand Up @@ -690,7 +690,7 @@ public function jsonSerialize()
}
}

class Content implements \jsonSerializable
class Content implements \JsonSerializable
{
private
$type,
Expand Down Expand Up @@ -733,7 +733,7 @@ public function jsonSerialize()
}
}

class Personalization implements \jsonSerializable
class Personalization implements \JsonSerializable
{
private
$tos,
Expand Down Expand Up @@ -842,7 +842,7 @@ public function jsonSerialize()
}
}

class Email implements \jsonSerializable
class Email implements \JsonSerializable
{
private
$name,
Expand Down Expand Up @@ -888,7 +888,7 @@ public function jsonSerialize()
/**
* The final request body object
*/
class Mail implements \jsonSerializable
class Mail implements \JsonSerializable
{
const VERSION = '1.0.0';

Expand Down

0 comments on commit 25ee479

Please sign in to comment.