We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff9adc8 commit e3d5974Copy full SHA for e3d5974
src/App.php
@@ -14,6 +14,11 @@ public function quit(): void
14
$this->client->post('app/quit');
15
}
16
17
+ public function relaunch(): void
18
+ {
19
+ $this->client->post('app/relaunch');
20
+ }
21
+
22
public function focus(): void
23
{
24
$this->client->post('app/focus');
src/Facades/App.php
@@ -6,6 +6,7 @@
6
7
/**
8
* @method static void quit()
9
+ * @method static void relaunch()
10
* @method static void focus()
11
* @method static void hide()
12
* @method static bool isHidden()
0 commit comments