Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0501c5f53c | |||
| 6a9247ba8a | |||
| fcf84bf63f |
@@ -87,9 +87,9 @@ class AuthServiceProvider extends ServiceProvider
|
||||
]);
|
||||
|
||||
$this->registerPolicies();
|
||||
Passport::tokensExpireIn(Carbon::now()->addYears(config('passport.expiration_years')));
|
||||
Passport::refreshTokensExpireIn(Carbon::now()->addYears(config('passport.expiration_years')));
|
||||
Passport::personalAccessTokensExpireIn(Carbon::now()->addYears(config('passport.expiration_years')));
|
||||
Passport::tokensExpireIn(Carbon::now()->addYears((int) config('passport.expiration_years')));
|
||||
Passport::refreshTokensExpireIn(Carbon::now()->addYears((int) config('passport.expiration_years')));
|
||||
Passport::personalAccessTokensExpireIn(Carbon::now()->addYears((int) config('passport.expiration_years')));
|
||||
|
||||
Passport::cookie(config('passport.cookie_name'));
|
||||
|
||||
|
||||
+6
-6
@@ -1,10 +1,10 @@
|
||||
<?php
|
||||
return array (
|
||||
'app_version' => 'v7.1.16',
|
||||
'full_app_version' => 'v7.1.16 - build 16564-gfb857ccf5',
|
||||
'build_version' => '16564',
|
||||
'app_version' => 'v7.1.17',
|
||||
'full_app_version' => 'v7.1.17 - build 16787-g1fe170e6a',
|
||||
'build_version' => '16787',
|
||||
'prerelease_version' => '',
|
||||
'hash_version' => 'gfb857ccf5',
|
||||
'full_hash' => 'v7.1.16-510-gfb857ccf5',
|
||||
'branch' => 'develop',
|
||||
'hash_version' => 'g1fe170e6a',
|
||||
'full_hash' => 'v7.1.17-212-g1fe170e6a',
|
||||
'branch' => 'master',
|
||||
);
|
||||
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Feature\Manufacturers\Ui;
|
||||
namespace Tests\Feature\Manufacturers\Api;
|
||||
|
||||
use App\Models\Manufacturer;
|
||||
use App\Models\Category;
|
||||
|
||||
Reference in New Issue
Block a user