We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent abd2964 commit f85a0abCopy full SHA for f85a0ab
1 file changed
app/Providers/AppServiceProvider.php
@@ -20,14 +20,14 @@ class AppServiceProvider extends ServiceProvider
20
public function register(): void
21
{
22
$this->app->singleton('app_version', function () {
23
- return '1.0.0-beta.7';
+ return '1.0.0-beta.8';
24
});
25
26
$this->app->singleton('user_agent', function () {
27
$version = app('app_version');
28
$url = config('app.url');
29
30
- return "Loops/{$version} (Laravel/".app()->version()."; +{$url})";
+ return "Loops/{$version} (Laravel/12.x; +{$url})";
31
32
}
33
0 commit comments