Skip to content

Commit

Permalink
Merge pull request #263 from miken32/master
Browse files Browse the repository at this point in the history
Support PHP 8
  • Loading branch information
bkuhl authored Jan 27, 2021
2 parents c749a07 + 9f01341 commit 8f99d01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}
],
"require": {
"php": "^7.3",
"php": "^7.3|^8.0",
"ql/uri-template": "^1.1",
"webmozart/assert": "^1.2",
"guzzlehttp/guzzle": "^6.3|^7.0.1"
Expand Down
2 changes: 1 addition & 1 deletion tests/Webhooks/IncomingWebhookTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

class IncomingWebhookTest extends TestCase
{
protected function createRequest(array $headers = [], string $body)
protected function createRequest(array $headers, string $body)
{
return new Request('POST', 'www.blah.blah', $headers, $body);
}
Expand Down

0 comments on commit 8f99d01

Please sign in to comment.