Skip to content

Commit 84b6496

Browse files
author
Christoph Rumpel
committed
Style fix
1 parent 9247a05 commit 84b6496

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

src/TwitterStatusUpdate.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace NotificationChannels\Twitter;
44

5-
use Kylewm\Brevity\Brevity;
65
use Illuminate\Support\Collection;
6+
use Kylewm\Brevity\Brevity;
77
use NotificationChannels\Twitter\Exceptions\CouldNotSendNotification;
88

99
class TwitterStatusUpdate

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
abstract class TestCase extends \Orchestra\Testbench\TestCase
88
{
9-
public function tearDown() :void
9+
public function tearDown(): void
1010
{
1111
parent::tearDown();
1212

tests/TwitterChannelTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
namespace NotificationChannels\Twitter\Test;
44

5-
use Mockery;
6-
use stdClass;
75
use Abraham\TwitterOAuth\TwitterOAuth;
86
use Illuminate\Notifications\Notification;
7+
use Mockery;
8+
use NotificationChannels\Twitter\Exceptions\CouldNotSendNotification;
99
use NotificationChannels\Twitter\TwitterChannel;
1010
use NotificationChannels\Twitter\TwitterStatusUpdate;
11-
use NotificationChannels\Twitter\Exceptions\CouldNotSendNotification;
11+
use stdClass;
1212

1313
class TwitterChannelTest extends TestCase
1414
{
@@ -18,7 +18,7 @@ class TwitterChannelTest extends TestCase
1818
/** @var \NotificationChannels\Twitter\TwitterChannel */
1919
protected $channel;
2020

21-
public function setUp() :void
21+
public function setUp(): void
2222
{
2323
parent::setUp();
2424
$this->twitter = Mockery::mock(TwitterOAuth::class);

tests/TwitterDirectMessageTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
namespace NotificationChannels\Twitter\Test;
44

5-
use Mockery;
65
use Abraham\TwitterOAuth\TwitterOAuth;
6+
use Mockery;
77
use NotificationChannels\Twitter\TwitterDirectMessage;
88

99
class TwitterDirectMessageTest extends TestCase
@@ -16,7 +16,7 @@ class TwitterDirectMessageTest extends TestCase
1616

1717
protected $twitter;
1818

19-
public function setUp() :void
19+
public function setUp(): void
2020
{
2121
parent::setUp();
2222
$this->twitter = Mockery::mock(TwitterOAuth::class);

tests/TwitterStatusUpdateTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace NotificationChannels\Twitter\Test;
44

5+
use NotificationChannels\Twitter\Exceptions\CouldNotSendNotification;
56
use NotificationChannels\Twitter\TwitterImage;
67
use NotificationChannels\Twitter\TwitterStatusUpdate;
7-
use NotificationChannels\Twitter\Exceptions\CouldNotSendNotification;
88

99
class TwitterStatusUpdateTest extends TestCase
1010
{

0 commit comments

Comments
 (0)