We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d768be commit 6e6cf13Copy full SHA for 6e6cf13
src/Events/EventWatcher.php
@@ -12,7 +12,6 @@ public function __construct(protected Client $client) {}
12
public function register(): void
13
{
14
Event::listen('*', function (string $eventName, array $data) {
15
-
16
$event = $data[0] ?? (object) null;
17
18
if (! method_exists($event, 'broadcastOn')) {
src/Windows/Window.php
@@ -24,7 +24,7 @@ class Window
24
25
protected bool $kiosk = false;
26
27
- protected $rememberState = false;
+ protected bool $rememberState = false;
28
29
protected bool $alwaysOnTop = false;
30
@@ -362,4 +362,9 @@ public function fromRuntimeWindow(object $window): static
362
363
return $this;
364
}
365
+
366
+ public function __get($var)
367
+ {
368
+ return $this->$var ?? null;
369
+ }
370
0 commit comments