Skip to content

Commit 27b6fa5

Browse files
authored
chore: style fixes
1 parent 2c018ce commit 27b6fa5

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

src/Pushover.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class Pushover
4040

4141
/**
4242
* @param HttpClient $http
43-
* @param string $token
43+
* @param string $token
4444
*/
4545
public function __construct(HttpClient $http, $token)
4646
{
@@ -56,6 +56,7 @@ public function __construct(HttpClient $http, $token)
5656
*
5757
* @param array $params
5858
* @return \Psr\Http\Message\ResponseInterface
59+
*
5960
* @throws CouldNotSendNotification
6061
*/
6162
public function send($params)

src/PushoverChannel.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class PushoverChannel
1818
/**
1919
* Create a new Pushover channel instance.
2020
*
21-
* @param Pushover $pushover
21+
* @param Pushover $pushover
2222
*/
2323
public function __construct(Pushover $pushover, Dispatcher $events)
2424
{
@@ -29,8 +29,8 @@ public function __construct(Pushover $pushover, Dispatcher $events)
2929
/**
3030
* Send the given notification.
3131
*
32-
* @param mixed $notifiable
33-
* @param \Illuminate\Notifications\Notification $notification
32+
* @param mixed $notifiable
33+
* @param \Illuminate\Notifications\Notification $notification
3434
*
3535
* @throws \NotificationChannels\Pushover\Exceptions\CouldNotSendNotification
3636
*/

src/PushoverMessage.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,7 @@ class PushoverMessage
105105
const EMERGENCY_PRIORITY = 2;
106106

107107
/**
108-
* @param string $content
109-
*
108+
* @param string $content
110109
* @return static
111110
*/
112111
public static function create($content = '')
@@ -204,8 +203,8 @@ public function time($time)
204203
/**
205204
* Set a supplementary url for the Pushover message.
206205
*
207-
* @param string $url
208-
* @param string $title
206+
* @param string $url
207+
* @param string $title
209208
* @return $this
210209
*/
211210
public function url($url, $title = null)
@@ -232,7 +231,7 @@ public function sound($sound)
232231
/**
233232
* Set the image for attaching to the Pushover message. Either full or relative server path or a URL.
234233
*
235-
* @param string $image
234+
* @param string $image
236235
* @return $this
237236
*/
238237
public function image($image)
@@ -344,6 +343,7 @@ public function toArray()
344343
* @param int $priority
345344
* @param int $retry
346345
* @param int $expire
346+
*
347347
* @throws EmergencyNotificationRequiresRetryAndExpire
348348
*/
349349
protected function noEmergencyWithoutRetryOrExpire($priority, $retry, $expire)

src/PushoverReceiver.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ class PushoverReceiver
1010

1111
/**
1212
* PushoverReceiver constructor.
13+
*
1314
* @param $key User or group key.
1415
*/
1516
protected function __construct($key)

0 commit comments

Comments
 (0)