Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: enhanced type exception handling #762

Merged
merged 30 commits into from
Jul 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
450cdfc
Add Assert class for data type validation
misantron Oct 27, 2018
f2876d5
Additional asserts
misantron Oct 27, 2018
aa9c296
Add whitelist section to PHPUnit config
misantron Oct 27, 2018
03d90cd
Add Assert class unit tests, some tests fixes
misantron Oct 27, 2018
34c22bd
Add assertion method descriptions
misantron Oct 27, 2018
5ba0f8a
Category checking fix
misantron Oct 27, 2018
11c7725
GroupsToDisplay fixes and additional tests
misantron Oct 27, 2018
a20aaf4
Remove global namespace from constants definition
misantron Oct 27, 2018
610afcd
Update TravisCI configuration: Composer cache and Prism server from D…
misantron Oct 28, 2018
e3fb459
Rollback TravisCI configuration changes
misantron Oct 28, 2018
4963a10
Merge remote-tracking branch 'remotes/upstream/master' into issue754-…
misantron Oct 21, 2019
46396a7
Fix test classes naming
misantron Oct 21, 2019
ccfee46
Fix EmailAddress tests
misantron Oct 21, 2019
3fb4aa6
Update composer.json
Jul 2, 2020
ea88cea
Update composer.json
Jul 2, 2020
79e18d1
Merge branch 'master' into issue754-patch
misantron Jul 3, 2020
eafbee1
Fix code and tests after master merge
misantron Jul 3, 2020
208fcba
Merge branch 'issue754-patch' of github.com:misantron/sendgrid-php in…
misantron Jul 3, 2020
b41937e
Fix content params assertion
misantron Jul 3, 2020
fbbcbc1
Replace abstract with final
misantron Jul 5, 2020
2a129fc
Refactoring assertion messages - display provided value in error message
misantron Jul 5, 2020
b8db656
Fix instance of assertion
misantron Jul 5, 2020
3633f5f
Rollback breaking changes
misantron Jul 5, 2020
510104f
Fix typos
misantron Jul 5, 2020
493f58d
Merge branch 'master' into issue754-patch
Jul 6, 2020
d7d2f7f
Update composer.json
Jul 6, 2020
4cc68cf
Fixes
misantron Jul 7, 2020
94f10e7
Merge branch 'master' into issue754-patch
Jul 8, 2020
8295a9c
Merge branch 'master' into issue754-patch
Jul 9, 2020
3fe2e8e
Update Mail.php
Jul 9, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"psr-4": {
"SendGrid\\Contacts\\": "lib/contacts/",
"SendGrid\\EventWebhook\\": "lib/eventwebhook/",
"SendGrid\\Helper\\": "lib/helper/",
"SendGrid\\Mail\\": "lib/mail/",
"SendGrid\\Stats\\": "lib/stats/"
},
Expand Down
2 changes: 1 addition & 1 deletion lib/eventwebhook/EventWebhookHeader.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*
* @package SendGrid\EventWebhook
*/
abstract class EventWebhookHeader
final class EventWebhookHeader
{
const SIGNATURE = "X-Twilio-Email-Event-Webhook-Signature";
const TIMESTAMP = "X-Twilio-Email-Event-Webhook-Timestamp";
Expand Down
Loading