Skip to content

Commit 54d2d66

Browse files
mpociotgithub-actions[bot]
authored andcommitted
Fix styling
1 parent e97d007 commit 54d2d66

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/App.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ public function badgeCount($count = null): int
3737
}
3838

3939
$this->client->post('app/badge-count', [
40-
'count' => (int)$count,
40+
'count' => (int) $count,
4141
]);
4242

43-
return (int)$count;
43+
return (int) $count;
4444
}
4545

4646
public function addRecentDocument(string $path): void

src/System.php

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

77
class System
88
{
9-
109
public function __construct(protected Client $client)
1110
{
1211
}

src/Window.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ class Window
1111
protected string $url = '';
1212

1313
protected $x;
14+
1415
protected $y;
1516

1617
protected int $width = 400;
@@ -201,7 +202,7 @@ public function open(): void
201202

202203
public function current()
203204
{
204-
return (object)$this->client->get('window/current')->json();
205+
return (object) $this->client->get('window/current')->json();
205206
}
206207

207208
public function invisibleFrameless(): self

0 commit comments

Comments
 (0)