File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,10 +37,10 @@ public function badgeCount($count = null): int
37
37
}
38
38
39
39
$ this ->client ->post ('app/badge-count ' , [
40
- 'count ' => (int )$ count ,
40
+ 'count ' => (int ) $ count ,
41
41
]);
42
42
43
- return (int )$ count ;
43
+ return (int ) $ count ;
44
44
}
45
45
46
46
public function addRecentDocument (string $ path ): void
Original file line number Diff line number Diff line change 6
6
7
7
class System
8
8
{
9
-
10
9
public function __construct (protected Client $ client )
11
10
{
12
11
}
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ class Window
11
11
protected string $ url = '' ;
12
12
13
13
protected $ x ;
14
+
14
15
protected $ y ;
15
16
16
17
protected int $ width = 400 ;
@@ -201,7 +202,7 @@ public function open(): void
201
202
202
203
public function current ()
203
204
{
204
- return (object )$ this ->client ->get ('window/current ' )->json ();
205
+ return (object ) $ this ->client ->get ('window/current ' )->json ();
205
206
}
206
207
207
208
public function invisibleFrameless (): self
You can’t perform that action at this time.
0 commit comments