diff options
author | Avi Goldman <avrahamymgoldman@gmail.com> | 2017-01-04 09:20:23 -0500 |
---|---|---|
committer | Avi Goldman <avrahamymgoldman@gmail.com> | 2017-01-04 09:20:23 -0500 |
commit | 0bee98bce7b94bf22906853889ee091ed50a29a2 (patch) | |
tree | e7526bae011920092aa928318749c0dae1705a37 /lib/SparkPost/SparkPostException.php | |
parent | 73baa0387523238a0f3695c2851fca3e149672c0 (diff) | |
download | php-sparkpost-0bee98bce7b94bf22906853889ee091ed50a29a2.zip php-sparkpost-0bee98bce7b94bf22906853889ee091ed50a29a2.tar.gz php-sparkpost-0bee98bce7b94bf22906853889ee091ed50a29a2.tar.bz2 |
ran fix style
Diffstat (limited to 'lib/SparkPost/SparkPostException.php')
-rw-r--r-- | lib/SparkPost/SparkPostException.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/SparkPost/SparkPostException.php b/lib/SparkPost/SparkPostException.php index ee4664c..8f06845 100644 --- a/lib/SparkPost/SparkPostException.php +++ b/lib/SparkPost/SparkPostException.php @@ -12,7 +12,7 @@ class SparkPostException extends \Exception private $body = null; /** - * Array with the request values sent + * Array with the request values sent. */ private $request; @@ -37,11 +37,12 @@ class SparkPostException extends \Exception } /** - * Returns the request values sent + * Returns the request values sent. * - * @return Array $request + * @return array $request */ - public function getRequest() { + public function getRequest() + { return $this->request; } |