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

Update: Namespace grouped #305

Closed

Conversation

manaver
Copy link

@manaver manaver commented Aug 29, 2023

Namespaces are now grouped in all files. Helps more for imports readability.

Import changes from this:

use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Facades\Password;
use Illuminate\Support\Str;
use Illuminate\Validation\Rules;
use Illuminate\Validation\ValidationException;

to this:

use Illuminate\{
    Auth\Events\PasswordReset,
    Http\JsonResponse,
    Http\Request,
    Support\Facades\Hash,
    Support\Facades\Password,
    Support\Str,
    Validation\Rules,
    Validation\ValidationException
};

@manaver manaver closed this Aug 29, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant