Skip to content

Commit

Permalink
chore(deps): bump asbiin/laravel-webauthn (#6870)
Browse files Browse the repository at this point in the history
  • Loading branch information
asbiin authored Sep 6, 2023
1 parent c87724d commit fa020af
Show file tree
Hide file tree
Showing 17 changed files with 294 additions and 142 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

class SynchronizeAddressBooks implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels, Localizable;
use Dispatchable, InteractsWithQueue, Localizable, Queueable, SerializesModels;

/**
* The number of times the job may be attempted.
Expand Down
8 changes: 4 additions & 4 deletions app/Models/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
use Laravel\Sanctum\HasApiTokens;
use LaravelWebauthn\WebauthnAuthenticatable;

class User extends Authenticatable implements MustVerifyEmail, HasLocalePreference
class User extends Authenticatable implements HasLocalePreference, MustVerifyEmail
{
use Notifiable;
use HasFactory;
use HasApiTokens;
use HasFactory;
use HasUuids;
use Notifiable;
use TwoFactorAuthenticatable;
use WebauthnAuthenticatable;
use HasUuids;

/**
* Possible number format types.
Expand Down
2 changes: 1 addition & 1 deletion app/Services/QueuableService.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
*/
abstract class QueuableService extends BaseService implements ShouldQueue
{
use Dispatchable, Queueable, InteractsWithQueue;
use Dispatchable, InteractsWithQueue, Queueable;

/**
* The number of times the job may be attempted.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"require": {
"php": "^8.2",
"ext-fileinfo": "*",
"asbiin/laravel-webauthn": "^3.2",
"asbiin/laravel-webauthn": "^4.0",
"codezero/laravel-localizer": "^2.0",
"doctrine/dbal": "^3.6",
"guzzlehttp/guzzle": "^7.4",
Expand Down
Loading

0 comments on commit fa020af

Please sign in to comment.