boilerplate-laravel icon indicating copy to clipboard operation
boilerplate-laravel copied to clipboard

PSR-4 Errors

Open LeftPinkie opened this issue 4 months ago • 0 comments

This is a bug.

Prerequisites

  • [x] Are you running the latest version?
  • [X] Are you reporting to the correct repository?
  • [X] Did you check the documentation?
  • [X] Did you perform a cursory search?

Description

Several of your files do not conform to PSR-4 because their class name do not match the file name:

Class App\Http\Controllers\AdminForgotPasswordController located in ./app/Http/Controllers/ForgotPasswordController.php does not comply with psr-4 autoloading standard. Skipping.
Class App\Http\Controllers\AdminResetPasswordController located in ./app/Http/Controllers/ResetPasswordController.php does not comply with psr-4 autoloading standard. Skipping.
Class App\Http\Controllers\AdminLoginController located in ./app/Http/Controllers/LoginController.php does not comply with psr-4 autoloading standard. Skipping.
Class App\Actions\Jetstream\DeleteUser located in ./app/Actions/Jetstream/DeleteUserWithTeams.php does not comply with psr-4 autoloading standard. Skipping.
Class App\Actions\Socialstream\CreateUserFromProvider located in ./app/Actions/Socialstream/CreateUserWithTeamsFromProvider.php does not comply with psr-4 autoloading standard. Skipping.

Steps to Reproduce

  1. execute:
$ php82 composer update

Expected behavior

Should be no errors when running composer update

LeftPinkie avatar Oct 14 '24 12:10 LeftPinkie