Skip to content

Commit

Permalink
Merge pull request #2 from talvbansal/analysis-8PPA7R
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
talvbansal authored Nov 12, 2019
2 parents d7e5543 + 20a3525 commit 6a297d7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/ChannelTest.php
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
<?php


namespace NotificationChannels\MsTeams\Test;

use GuzzleHttp\Client;
use GuzzleHttp\Handler\MockHandler;
use GuzzleHttp\HandlerStack;
use GuzzleHttp\Psr7\Response;
use Illuminate\Notifications\Notifiable;
use Illuminate\Notifications\Notification;
use Mockery;
use GuzzleHttp\Client;
use GuzzleHttp\Psr7\Response;
use NotificationChannels\MsTeams\Exceptions\CouldNotSendNotification;
use NotificationChannels\MsTeams\MsTeamsChannel;
use NotificationChannels\MsTeams\MsTeamsMessage;
Expand Down Expand Up @@ -37,7 +35,8 @@ public function it_can_send_a_notification()
/**
* @test
*/
public function it_throws_an_exception_when_it_could_not_send_the_notification(){
public function it_throws_an_exception_when_it_could_not_send_the_notification()
{
$this->expectException(CouldNotSendNotification::class);

$channel = new MsTeamsChannel(new Client());
Expand All @@ -48,6 +47,7 @@ public function it_throws_an_exception_when_it_could_not_send_the_notification()
class TestNotifiable
{
use Notifiable;

/**
* @return int
*/
Expand Down

0 comments on commit 6a297d7

Please sign in to comment.