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

Commit

Permalink
Update unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Biptaste committed Sep 3, 2017
1 parent 7479fb0 commit 36cc7cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .travis.yml
@@ -1,9 +1,6 @@
language: php
php:
- '5.5'
- '5.6'
- '7.0'
- hhvm
- nightly

install:
Expand Down
6 changes: 3 additions & 3 deletions src/SendinBlueTransport.php
Expand Up @@ -5,7 +5,7 @@
use Illuminate\Mail\Transport\Transport;
use Sendinblue\Mailin;
use Swift_Attachment;
use Swift_Mime_Message;
use Swift_Mime_SimpleMessage;
use Swift_MimePart;

class SendinBlueTransport extends Transport
Expand All @@ -31,7 +31,7 @@ public function __construct(Mailin $mailin)
/**
* {@inheritdoc}
*/
public function send(\Swift_Mime_SimpleMessage $message, &$failedRecipients = null)
public function send(Swift_Mime_SimpleMessage $message, &$failedRecipients = null)
{
$this->beforeSendPerformed($message);

Expand All @@ -54,7 +54,7 @@ public function send(\Swift_Mime_SimpleMessage $message, &$failedRecipients = nu
* cf. https://apidocs.sendinblue.com/tutorial-sending-transactional-email/
*
* @todo implements headers, inline_image
* @param Swift_Mime_Message $message
* @param Swift_Mime_SimpleMessage $message
* @return array
*/
protected function buildData($message)
Expand Down

0 comments on commit 36cc7cd

Please sign in to comment.