Skip to content

Commit

Permalink
fix suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
s-ichikawa committed Mar 15, 2024
1 parent b28c09c commit b96c3ee
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
"keywords": ["laravel", "sendgrid"],
"license": "MIT",
"require": {
"illuminate/mail": "^10.0||^11.0",
"illuminate/notifications": "^10.0||^11.0",
"illuminate/support": "^10.0||^11.0",
"illuminate/mail": "^9.0||^10.0||^11.0",
"illuminate/notifications": "^9.0||^10.0||^11.0",
"illuminate/support": "^9.0||^10.0||^11.0",
"guzzlehttp/guzzle": "^7.2"
},
"require-dev": {
"illuminate/container": "^10.0||^11.0",
"illuminate/filesystem": "^10.0||^11.0",
"illuminate/container": "^9.0||^10.0||^11.0",
"illuminate/filesystem": "^9.0||^10.0||^11.0",
"phpunit/phpunit": "^9.5.8||^10.0",
"laravel/helpers": "^1.2",
"vlucas/phpdotenv": "^5.4.1"
Expand Down
4 changes: 2 additions & 2 deletions src/Transport/SendgridTransport.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use Symfony\Component\Mime\MessageConverter;
use Symfony\Component\Mime\Part\DataPart;

class SendgridTransport extends AbstractTransport implements Stringable
class SendgridTransport extends AbstractTransport implements Stringable
{
use SendGrid {
sgDecode as decode;
Expand Down Expand Up @@ -84,7 +84,7 @@ protected function doSend(SentMessage $message): void
],
'json' => $data,
];

$response = $this->post($payload);

$message->getOriginalMessage()
Expand Down

0 comments on commit b96c3ee

Please sign in to comment.