diff --git a/src/Screen.php b/src/Screen.php index c15d4e1..9f34c10 100644 --- a/src/Screen.php +++ b/src/Screen.php @@ -18,12 +18,12 @@ public function displays(): array return $this->client->get('screen/displays')->json('displays'); } - public function primary(): object + public function primary(): array { return $this->client->get('screen/primary-display')->json('primaryDisplay'); } - public function active(): object + public function active(): array { return $this->client->get('screen/active')->json(); }