diff options
author | James Fellows <james.fellows@finanscapes.com> | 2016-04-26 21:05:06 +0100 |
---|---|---|
committer | James Fellows <james.fellows@finanscapes.com> | 2016-04-26 21:05:06 +0100 |
commit | 4ee945d21af22df681882887db0a6082bfbe371a (patch) | |
tree | c5db615538fce7f598cf02f9bf120122d05dd940 /lib/SparkPost/SparkPost.php | |
parent | 6aeb9680c743ce71994bcddb59adfd18ccfe98a0 (diff) | |
download | php-sparkpost-4ee945d21af22df681882887db0a6082bfbe371a.zip php-sparkpost-4ee945d21af22df681882887db0a6082bfbe371a.tar.gz php-sparkpost-4ee945d21af22df681882887db0a6082bfbe371a.tar.bz2 |
Rename MessageEvent to plural, update docblocks.
Diffstat (limited to 'lib/SparkPost/SparkPost.php')
-rw-r--r-- | lib/SparkPost/SparkPost.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/SparkPost/SparkPost.php b/lib/SparkPost/SparkPost.php index 0e576fe..48d6a9c 100644 --- a/lib/SparkPost/SparkPost.php +++ b/lib/SparkPost/SparkPost.php @@ -6,7 +6,7 @@ use Ivory\HttpAdapter\HttpAdapterInterface; class SparkPost { public $transmission; - public $messageEvent; + public $messageEvents; /** * Connection config for making requests. @@ -46,7 +46,7 @@ class SparkPost { $this->setHttpAdapter($httpAdapter); $this->transmission = new Transmission($this); - $this->messageEvent = new MessageEvent($this); + $this->messageEvents = new MessageEvents($this); } /** |