Skip to content

Commit d718a89

Browse files
committed
Apply diff
1 parent 1f0865f commit d718a89

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/Exceptions/CouldNotSendNotification.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ class CouldNotSendNotification extends \Exception
1010
/**
1111
* Expo responded with an error.
1212
*
13-
* @param $response
13+
* @param $response
1414
* @return static
1515
*/
1616
public static function serviceRespondedWithAnError($response)

src/ExpoMessage.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -242,13 +242,13 @@ public function priority(string $priority): ExpoMessage
242242
public function toArray(): array
243243
{
244244
$message = [
245-
'title' => $this->title,
246-
'body' => $this->body,
247-
'sound' => $this->sound,
248-
'badge' => $this->badge,
249-
'ttl' => $this->ttl,
250-
'data' => $this->jsonData,
251-
'priority' => $this->priority,
245+
'title' => $this->title,
246+
'body' => $this->body,
247+
'sound' => $this->sound,
248+
'badge' => $this->badge,
249+
'ttl' => $this->ttl,
250+
'data' => $this->jsonData,
251+
'priority' => $this->priority,
252252
];
253253
if (! empty($this->subtitle)) {
254254
$message['subtitle'] = $this->subtitle;

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class TestCase extends Orchestra
1111
use MockeryPHPUnitIntegration;
1212

1313
/**
14-
* @param $app
14+
* @param $app
1515
* @return array
1616
*/
1717
protected function getPackageProviders($app)

0 commit comments

Comments
 (0)