Skip to content

Commit

Permalink
Merge pull request #14 from gillidandaweb/master
Browse files Browse the repository at this point in the history
Fix spelling in exception messages
  • Loading branch information
jjaffeux committed Sep 17, 2019
2 parents 3647401 + b9faead commit 479e652
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Postmark/Inbound.php
Expand Up @@ -42,7 +42,7 @@ public function __construct($Json = FALSE)
{
if(empty($Json))
{
throw new InboundException('Posmark Inbound Error: you must provide a Json Source');
throw new InboundException('Postmark Inbound Error: you must provide a Json Source');
}

$this->Json = $Json;
Expand All @@ -59,7 +59,7 @@ private function _jsonToArray()
return $Source;
break;
default:
throw new InboundException('Posmark Inbound Error: Json format error');
throw new InboundException('Postmark Inbound Error: Json format error');
break;
}
}
Expand Down

0 comments on commit 479e652

Please sign in to comment.