Skip to content

Commit

Permalink
Fix PSR4 and resulting bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
curtisdelicata committed Jul 20, 2024
1 parent 16f7057 commit e2df4ec
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion app/Actions/Fortify/CreateNewUserWithTeams.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use Laravel\Fortify\Contracts\CreatesNewUsers;
use Laravel\Jetstream\Jetstream;

class CreateNewUser implements CreatesNewUsers
class CreateNewUserWithTeams implements CreatesNewUsers
{
use PasswordValidationRules;

Expand Down
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
1 change: 0 additions & 1 deletion app/Filament/App/Resources/ContentResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
use Filament\Tables\Columns\ImageColumn;
use Filament\Tables\Table;

#[Resource]
class ContentResource extends Resource
{
protected static ?string $model = Content::class;
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/LoginController.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;

class AdminLoginController extends Controller
class LoginController extends Controller
{
public function showLoginForm()
{
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

0 comments on commit e2df4ec

Please sign in to comment.