We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d1a0e3 commit 77d12f1Copy full SHA for 77d12f1
1 file changed
app/Providers/AppServiceProvider.php
@@ -20,7 +20,7 @@ class AppServiceProvider extends ServiceProvider
20
public function register(): void
21
{
22
$this->app->singleton('app_version', function () {
23
- return '1.0.0-beta.1';
+ return '1.0.0-beta.2';
24
});
25
26
$this->app->singleton('user_agent', function () {
@@ -107,11 +107,6 @@ public function boot(): void
107
108
protected function configureSecureUrls()
109
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);
+ URL::forceHttps(true);
116
}
117
0 commit comments