Skip to content

Commit d750817

Browse files
committed
Fix styling
1 parent b973cd9 commit d750817

File tree

6 files changed

+7
-8
lines changed

6 files changed

+7
-8
lines changed

src/Electron/Commands/Bifrost/ClearBundleCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ public function handle(): int
3838

3939
return static::SUCCESS;
4040
}
41-
}
41+
}

src/Electron/Commands/Bifrost/DownloadBundleCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,4 +201,4 @@ private function handleApiError($response): void
201201
$this->error('Failed to fetch bundle: '.($data['message'] ?? 'Unknown error'));
202202
}
203203
}
204-
}
204+
}

src/Electron/Commands/Bifrost/InitCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,4 +150,4 @@ private function handleApiError($response): void
150150
$this->info("Visit the dashboard: {$baseUrl}/dashboard");
151151
}
152152
}
153-
}
153+
}

src/Electron/Commands/Bifrost/LogoutCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ public function handle(): int
4444

4545
return static::SUCCESS;
4646
}
47-
}
47+
}

src/Electron/Commands/BuildCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@
77
use Illuminate\Support\Str;
88
use Native\Electron\ElectronServiceProvider;
99
use Native\Electron\Facades\Updater;
10-
use Native\Electron\Traits\ManagesEnvFile;
1110
use Native\Electron\Traits\CopiesBundleToBuildDirectory;
1211
use Native\Electron\Traits\CopiesCertificateAuthority;
1312
use Native\Electron\Traits\HasPreAndPostProcessing;
1413
use Native\Electron\Traits\InstallsAppIcon;
1514
use Native\Electron\Traits\LocatesPhpBinary;
15+
use Native\Electron\Traits\ManagesEnvFile;
1616
use Native\Electron\Traits\OsAndArch;
1717
use Native\Electron\Traits\PatchesPackagesJson;
1818
use Native\Electron\Traits\PrunesVendorDirectory;
@@ -27,12 +27,12 @@
2727
)]
2828
class BuildCommand extends Command
2929
{
30-
use ManagesEnvFile;
3130
use CopiesBundleToBuildDirectory;
3231
use CopiesCertificateAuthority;
3332
use HasPreAndPostProcessing;
3433
use InstallsAppIcon;
3534
use LocatesPhpBinary;
35+
use ManagesEnvFile;
3636
use OsAndArch;
3737
use PatchesPackagesJson;
3838
use PrunesVendorDirectory;

src/Electron/Traits/HandlesBifrost.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
trait HandlesBifrost
1212
{
13-
1413
private function baseUrl(): string
1514
{
1615
return str(config('nativephp-internal.bifrost.host'))->finish('/');
@@ -121,4 +120,4 @@ protected function makeApiRequest(string $method, string $endpoint, array $data
121120
throw new Exception("API request failed: {$e->getMessage()}");
122121
}
123122
}
124-
}
123+
}

0 commit comments

Comments
 (0)