Skip to content

Commit 248995d

Browse files
committed
feat: add quit method to App class
1 parent 0102a92 commit 248995d

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/App.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ class App
88
{
99
public function __construct(protected Client $client) {}
1010

11+
public function quit(): void
12+
{
13+
$this->client->post('app/quit');
14+
}
15+
1116
public function focus(): void
1217
{
1318
$this->client->post('app/focus');

0 commit comments

Comments
 (0)