Skip to content

Commit 6905fe2

Browse files
committed
PHPDocs, comments, and style fixes for SendGrid class
1 parent 1f1bb72 commit 6905fe2

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

lib/SendGrid.php

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,27 @@ class SendGrid
1818
{
1919
const VERSION = '5.1.0';
2020

21-
protected
22-
$namespace = 'SendGrid';
21+
/**
22+
*
23+
* @var string
24+
*/
25+
protected $namespace = 'SendGrid';
26+
27+
/**
28+
* @var \SendGrid\Client
29+
*/
30+
public $client;
2331

24-
public
25-
$client,
26-
$version = self::VERSION;
32+
/**
33+
* @var string
34+
*/
35+
public $version = self::VERSION;
2736

2837
/**
2938
* Setup the HTTP Client
3039
*
3140
* @param string $apiKey your SendGrid API Key.
32-
* @param array $options an array of options, currenlty only "host" is implemented.
41+
* @param array $options an array of options, currently only "host" is implemented.
3342
*/
3443
public function __construct($apiKey, $options = array())
3544
{

0 commit comments

Comments
 (0)