Skip to content

Commit

Permalink
Merge branch 'main' of github.com:NativePHP/laravel
Browse files Browse the repository at this point in the history
  • Loading branch information
mpociot committed May 13, 2023
2 parents 04b1494 + 54d2d66 commit ace82ba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ public function badgeCount($count = null): int
}

$this->client->post('app/badge-count', [
'count' => (int)$count,
'count' => (int) $count,
]);

return (int)$count;
return (int) $count;
}

public function addRecentDocument(string $path): void
Expand Down
1 change: 0 additions & 1 deletion src/System.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@

class System
{

public function __construct(protected Client $client)
{
}
Expand Down
3 changes: 2 additions & 1 deletion src/Window.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ class Window
protected string $url = '';

protected $x;

protected $y;

protected int $width = 400;
Expand Down Expand Up @@ -201,7 +202,7 @@ public function open(): void

public function current()
{
return (object)$this->client->get('window/current')->json();
return (object) $this->client->get('window/current')->json();
}

public function invisibleFrameless(): self
Expand Down

0 comments on commit ace82ba

Please sign in to comment.