Skip to content
This repository has been archived by the owner on Apr 5, 2023. It is now read-only.

Commit

Permalink
Merge branch 'Kaishiyoku-5.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
Biptaste committed Sep 3, 2017
2 parents 1f8b1fd + 8fa4f97 commit 7479fb0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -12,7 +12,7 @@
}
],
"require": {
"illuminate/mail": "~5",
"illuminate/mail": "5.5.*",
"mailin-api/mailin-api-php": "1.0.2"
},
"require-dev": {
Expand Down
2 changes: 1 addition & 1 deletion src/SendinBlueTransport.php
Expand Up @@ -31,7 +31,7 @@ public function __construct(Mailin $mailin)
/**
* {@inheritdoc}
*/
public function send(Swift_Mime_Message $message, &$failedRecipients = null)
public function send(\Swift_Mime_SimpleMessage $message, &$failedRecipients = null)
{
$this->beforeSendPerformed($message);

Expand Down
3 changes: 2 additions & 1 deletion tests/SendinBlueTransportTest.php
@@ -1,8 +1,9 @@
<?php

use PHPUnit\Framework\TestCase;
use Webup\LaravelSendinBlue\SendinBlueTransport;

class SendinBlueTransportTest extends PHPUnit_Framework_TestCase
class SendinBlueTransportTest extends TestCase
{
public function testSend()
{
Expand Down

0 comments on commit 7479fb0

Please sign in to comment.