Skip to content

Commit ceaf3a1

Browse files
committed
StyleCI changes
Singel space :)
1 parent 47bd80c commit ceaf3a1

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

src/FortySixElksMedia.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class FortySixElksMedia
1515
* @var array
1616
*/
1717
protected $payload = [
18-
'lines' => []
18+
'lines' => [],
1919
];
2020

2121
/**

src/FortySixElksSMS.php

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ public function send()
3030
try {
3131
$response = $this->client->request('POST', self::ENDPOINT, [
3232
'form_params' => [
33-
'from' => $this->from,
34-
'message' => $this->getContent(),
35-
'to' => $this->phone_number,
36-
'flashsms' => $this->flash,
37-
'dryrun' => $this->dry,
33+
'from' => $this->from,
34+
'message' => $this->getContent(),
35+
'to' => $this->phone_number,
36+
'flashsms' => $this->flash,
37+
'dryrun' => $this->dry,
3838
'whendelivered' => $this->delivered,
39-
'dontlog' => $this->log,
39+
'dontlog' => $this->log,
4040
],
4141

4242
]);
@@ -73,7 +73,8 @@ public function dry()
7373
}
7474

7575
/**
76-
* @param string $url
76+
* @param string $url
77+
*
7778
* @return $this
7879
*/
7980
public function delivered($url)
@@ -88,7 +89,7 @@ public function delivered($url)
8889
*/
8990
public function dontLog()
9091
{
91-
$this->log = $this->payload['dontLog'] ?? "message";
92+
$this->log = $this->payload['dontLog'] ?? 'message';
9293

9394
return $this;
9495
}

0 commit comments

Comments
 (0)