Skip to content

Commit 1288189

Browse files
mpociotgithub-actions[bot]
authored andcommitted
Fix styling
1 parent a0ddcef commit 1288189

File tree

6 files changed

+3
-7
lines changed

6 files changed

+3
-7
lines changed

config/native-php.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
'secret' => env('NATIVE_PHP_SECRET'),
1111

1212
'api_url' => env('NATIVE_PHP_API_URL', 'http://localhost:4000/api/'),
13-
13+
1414
'app_id' => env('NATIVEPHP_APP_ID'),
1515

1616
'provider' => \App\Providers\NativeAppServiceProvider::class,

src/App.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
class App
88
{
9-
109
public function __construct(protected Client $client)
1110
{
1211
}

src/Clipboard.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
class Clipboard
88
{
9-
109
public function __construct(protected Client $client)
1110
{
1211
}

src/Compactor/Php.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
use PhpToken;
66

7-
87
class Php
98
{
109
public function canProcessFile(string $path): bool

src/Events/App/OpenedFromURL.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class OpenedFromURL implements ShouldBroadcastNow
1414

1515
public function __construct(public $url)
1616
{
17-
17+
1818
}
1919

2020
public function broadcastOn()

src/Screen.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,13 @@
66

77
class Screen
88
{
9-
109
public function __construct(protected Client $client)
1110
{
1211
}
1312

1413
public function cursorPosition(): object
1514
{
16-
return (object)$this->client->get('screen/cursor-position')->json();
15+
return (object) $this->client->get('screen/cursor-position')->json();
1716
}
1817

1918
public function displays(): array

0 commit comments

Comments
 (0)