Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump asbiin/laravel-webauthn #6870

Merged
merged 1 commit into from
Sep 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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