There was an error while loading. Please reload this page.
1 parent 1f1bb72 commit 6905fe2Copy full SHA for 6905fe2
1 file changed
lib/SendGrid.php
@@ -18,18 +18,27 @@ class SendGrid
18
{
19
const VERSION = '5.1.0';
20
21
- protected
22
- $namespace = 'SendGrid';
+ /**
+ *
23
+ * @var string
24
+ */
25
+ protected $namespace = 'SendGrid';
26
+
27
28
+ * @var \SendGrid\Client
29
30
+ public $client;
31
- public
- $client,
- $version = self::VERSION;
32
33
34
35
+ public $version = self::VERSION;
36
37
/**
38
* Setup the HTTP Client
39
*
40
* @param string $apiKey your SendGrid API Key.
- * @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.
42
*/
43
public function __construct($apiKey, $options = array())
44
0 commit comments