Skip to content

Commit

Permalink
chore: style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
atymic authored Mar 10, 2020
1 parent 556c843 commit ad5b3ca
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/ClickatellClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace NotificationChannels\Clickatell;

use stdClass;
use Clickatell\Api\ClickatellHttp;
use NotificationChannels\Clickatell\Exceptions\CouldNotSendNotification;
use stdClass;

class ClickatellClient
{
Expand Down
8 changes: 4 additions & 4 deletions tests/ClickatellClientTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@

namespace NotificationChannels\Clickatell\Test;

use Mockery;
use PHPUnit\Framework\TestCase;
use Clickatell\Api\ClickatellHttp;
use Mockery;
use NotificationChannels\Clickatell\ClickatellClient;
use NotificationChannels\Clickatell\Exceptions\CouldNotSendNotification;
use PHPUnit\Framework\TestCase;

class ClickatellClientTest extends TestCase
{
/** @var $clickatellClient ClickatellClient */
/** @var ClickatellClient */
private $clickatellClient;

/** @var $httpClient ClickatellHttp */
/** @var ClickatellHttp */
private $httpClient;

public function setUp(): void
Expand Down
2 changes: 1 addition & 1 deletion tests/ClickatellMessageTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace NotificationChannels\Clickatell\Test;

use PHPUnit\Framework\TestCase;
use Clickatell\Api\ClickatellHttp;
use NotificationChannels\Clickatell\ClickatellMessage;
use PHPUnit\Framework\TestCase;

class ClickatellMessageTest extends TestCase
{
Expand Down

0 comments on commit ad5b3ca

Please sign in to comment.