Skip to content

Commit b5db73c

Browse files
author
Sam Harrison
committed
docs: cleanup support/help/contact information
1 parent 4e407b9 commit b5db73c

File tree

6 files changed

+8
-29
lines changed

6 files changed

+8
-29
lines changed

CONTRIBUTING.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,5 +197,3 @@ Please run your code through:
197197
<a name="code-reviews"></a>
198198
## Code Reviews
199199
If you can, please look at open PRs and review them. Give feedback and help us merge these PRs much faster! If you don't know how, Github has some great [information on how to review a Pull Request](https://help.github.com/articles/about-pull-request-reviews/).
200-
201-
If you have any additional questions, please feel free to [email](mailto:[email protected]) us or create an issue in this repo.

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,9 +189,11 @@ We were inspired by the work done on [birdy](https://github.com/inueni/birdy) an
189189
<a name="about"></a>
190190
# About
191191

192-
php-http-client is guided and supported by the SendGrid [Developer Experience Team](mailto:[email protected]).
192+
php-http-client is maintained and funded by Twilio SendGrid, Inc. The names and logos for php-http-client are trademarks of Twilio SendGrid, Inc.
193193

194-
php-http-client is maintained and funded by SendGrid, Inc. The names and logos for php-http-client are trademarks of SendGrid, Inc.
194+
If you need help installing or using the library, please check the [Twilio SendGrid Support Help Center](https://support.sendgrid.com).
195+
196+
If you've instead found a bug in the library or would like new features added, go ahead and open issues or pull requests against this repo!
195197

196198
<a name="license"></a>
197199
# License

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"authors": [
99
{
1010
"name": "Matt Bernier",
11-
"email": "dx@sendgrid.com"
11+
"email": "mbernier@twilio.com"
1212
},
1313
{
1414
"name": "Elmer Thomas",

lib/Client.php

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,6 @@
22

33
/**
44
* HTTP Client library
5-
*
6-
* @author Matt Bernier <[email protected]>
7-
* @author Elmer Thomas <[email protected]>
8-
* @copyright 2018 SendGrid
9-
* @license https://opensource.org/licenses/MIT The MIT License
10-
* @version GIT: <git_id>
11-
* @link http://packagist.org/packages/sendgrid/php-http-client
125
*/
136

147
namespace SendGrid;
@@ -20,7 +13,7 @@
2013
* Class Client
2114
* @package SendGrid
2215
* @version 3.9.5
23-
*
16+
*
2417
* Quickly and easily access any REST or REST-like API.
2518
*
2619
* @method Response get($body = null, $query = null, $headers = null)

lib/Exception/InvalidRequest.php

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,6 @@
22

33
/**
44
* HTTP Client library
5-
*
6-
* @author Matt Bernier <[email protected]>
7-
* @author Elmer Thomas <[email protected]>
8-
* @copyright 2018 SendGrid
9-
* @license https://opensource.org/licenses/MIT The MIT License
10-
* @version GIT: <git_id>
11-
* @link http://packagist.org/packages/sendgrid/php-http-client
125
*/
136
namespace SendGrid\Exception;
147

lib/Response.php

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,6 @@
22

33
/**
44
* HTTP Client library
5-
*
6-
* @author Matt Bernier <[email protected]>
7-
* @author Elmer Thomas <[email protected]>
8-
* @copyright 2018 SendGrid
9-
* @license https://opensource.org/licenses/MIT The MIT License
10-
* @version GIT: <git_id>
11-
* @link http://packagist.org/packages/sendgrid/php-http-client
125
*/
136

147
namespace SendGrid;
@@ -79,10 +72,10 @@ public function headers($assoc = false)
7972
if (!$assoc) {
8073
return $this->headers;
8174
}
82-
75+
8376
return $this->prettifyHeaders($this->headers);
8477
}
85-
78+
8679
/**
8780
* Returns response headers as associative array
8881
*

0 commit comments

Comments
 (0)