Skip to content

Commit

Permalink
composer warnining and issues fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Raza9798 committed Jan 14, 2025
1 parent 462ec19 commit 0a314da
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion app/Actions/Jetstream/DeleteUserWithTeams.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Laravel\Jetstream\Contracts\DeletesTeams;
use Laravel\Jetstream\Contracts\DeletesUsers;

class DeleteUser implements DeletesUsers
class DeleteUserWithTeams implements DeletesUsers
{
/**
* Create a new action instance.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use JoelButcher\Socialstream\Socialstream;
use Laravel\Socialite\Contracts\User as ProviderUserContract;

class CreateUserFromProvider implements CreatesUserFromProvider
class CreateUserWithTeamsFromProvider implements CreatesUserFromProvider
{
/**
* The creates connected accounts instance.
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/ForgotPasswordController.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Illuminate\Support\Facades\Password;
use Laravel\Jetstream\Http\Controllers\AuthenticatedSessionController;

class AdminForgotPasswordController extends AuthenticatedSessionController
class ForgotPasswordController extends AuthenticatedSessionController
{
public function showLinkRequestForm()
{
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/ResetPasswordController.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Illuminate\Support\Str;
use Laravel\Jetstream\Http\Controllers\AuthenticatedSessionController;

class AdminResetPasswordController extends AuthenticatedSessionController
class ResetPasswordController extends AuthenticatedSessionController
{
public function showResetForm(Request $request, $token = null)
{
Expand Down
28 changes: 14 additions & 14 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tests/Feature/SocialstreamRegistrationTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace tests;
namespace tests\Feature;

use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\Session;
Expand Down

0 comments on commit 0a314da

Please sign in to comment.