Skip to content

Commit 77d12f1

Browse files
committed
Update version
1 parent 2d1a0e3 commit 77d12f1

1 file changed

Lines changed: 2 additions & 7 deletions

File tree

app/Providers/AppServiceProvider.php

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class AppServiceProvider extends ServiceProvider
2020
public function register(): void
2121
{
2222
$this->app->singleton('app_version', function () {
23-
return '1.0.0-beta.1';
23+
return '1.0.0-beta.2';
2424
});
2525

2626
$this->app->singleton('user_agent', function () {
@@ -107,11 +107,6 @@ public function boot(): void
107107

108108
protected function configureSecureUrls()
109109
{
110-
// Determine if HTTPS should be enforced
111-
$enforceHttps = $this->app->environment(['production', 'staging'])
112-
&& ! $this->app->runningUnitTests();
113-
114-
// Force HTTPS for all generated URLs
115-
URL::forceHttps($enforceHttps);
110+
URL::forceHttps(true);
116111
}
117112
}

0 commit comments

Comments
 (0)