diff options
author | Jordan Nornhold <nornholdj@gmail.com> | 2015-09-08 22:24:16 -0400 |
---|---|---|
committer | Jordan Nornhold <nornholdj@gmail.com> | 2015-09-08 22:24:16 -0400 |
commit | aeea514f81c652257b64e606c771cc51249db49c (patch) | |
tree | 7884f1a4c5b418fda7ef84693f7e1d0aed0b6f0a /lib/SparkPost/SparkPost.php | |
parent | 3fb7f608b1252d1bf973f79af8f98ee11b9f1a0d (diff) | |
parent | c48ff8467d2a4ae229df6a3b8949e82d0d792ee5 (diff) | |
download | php-sparkpost-aeea514f81c652257b64e606c771cc51249db49c.zip php-sparkpost-aeea514f81c652257b64e606c771cc51249db49c.tar.gz php-sparkpost-aeea514f81c652257b64e606c771cc51249db49c.tar.bz2 |
Merge pull request #15 from MattApril/master
SDK Refactor for easy extensibility
Diffstat (limited to 'lib/SparkPost/SparkPost.php')
-rw-r--r-- | lib/SparkPost/SparkPost.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/SparkPost/SparkPost.php b/lib/SparkPost/SparkPost.php index 5c2a554..755df46 100644 --- a/lib/SparkPost/SparkPost.php +++ b/lib/SparkPost/SparkPost.php @@ -51,6 +51,10 @@ class SparkPost { } return self::$config; } + + public static function unsetConfig() { + self::$config = NULL; + } } ?>
\ No newline at end of file |