summaryrefslogtreecommitdiffstats
path: root/lib/Client.php
diff options
context:
space:
mode:
authorElmer Thomas <elmer@ThinkingSerious.com>2015-12-15 13:36:09 -0800
committerElmer Thomas <elmer@ThinkingSerious.com>2015-12-15 13:36:09 -0800
commit7f69f89d92cd54db26b4f420da1f46ed456a1668 (patch)
treec3ae1aea8668751755ed1a876bba003f1e0e7ae9 /lib/Client.php
parentebf68af9d4158450b6d673bf6d31ff5297057882 (diff)
parent2e7d3fcffd757c5ae1ef313fa2a8c3aa31ec29a0 (diff)
downloadsendgrid-php-4.0.3.zip
sendgrid-php-4.0.3.tar.gz
sendgrid-php-4.0.3.tar.bz2
Merge pull request #183 from sendgrid/statsv4.0.3
Add stats [GET] endpoint
Diffstat (limited to 'lib/Client.php')
-rw-r--r--lib/Client.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Client.php b/lib/Client.php
index a25ce15..da71d5d 100644
--- a/lib/Client.php
+++ b/lib/Client.php
@@ -3,6 +3,7 @@
require 'resources/api_keys.php';
require 'resources/asm_groups.php';
require 'resources/asm_suppressions.php';
+require 'resources/global_stats.php';
class Client
{
@@ -48,6 +49,7 @@ class Client
$this->api_keys = new APIKeys($this);
$this->asm_groups = new ASMGroups($this);
$this->asm_suppressions = new ASMSuppressions($this);
+ $this->global_stats = new GlobalStats($this);
}
/**