Skip to content

Commit 6dbba21

Browse files
author
Christoph Rumpel
committed
Fix style
1 parent 29e0a80 commit 6dbba21

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

src/TwitterChannel.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace NotificationChannels\Twitter;
44

55
use Abraham\TwitterOAuth\TwitterOAuth;
6-
use Illuminate\Notifications\Notifiable;
76
use Illuminate\Notifications\Notification;
87
use NotificationChannels\Twitter\Exceptions\CouldNotSendNotification;
98

@@ -54,13 +53,12 @@ public function send($notifiable, Notification $notification)
5453
}
5554

5655
/**
57-
* Use per user settings instead of default ones
56+
* Use per user settings instead of default ones.
5857
* @param $twitterSettings
5958
*/
6059
private function switchSettings($twitterSettings)
6160
{
6261
$this->twitter = new TwitterOAuth($twitterSettings[0], $twitterSettings[1], $twitterSettings[2],
6362
$twitterSettings[3]);
6463
}
65-
6664
}

src/TwitterStatusUpdate.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99
class TwitterStatusUpdate
1010
{
11-
1211
/** @var string */
1312
protected $content;
1413

@@ -100,7 +99,7 @@ public function getRequestBody()
10099
}
101100

102101
/**
103-
* Check if the message length is too long
102+
* Check if the message length is too long.
104103
* @param $content
105104
* @param $brevity
106105
* @return int

0 commit comments

Comments
 (0)