Description
What needs to be done?
Rename the auth type value none to default in all relevant places of the project.
Scope of changes:
- Update enum or constant definitions where the auth type value none is declared.
- Update command option values, prompts, and mappings that use none .
- Update all conditionals, comparisons, and branching logic that check none .
- Update tests that use none .
- Update fixtures that contain none .
- Update any generated output expectations that depend on this auth type value.
Requirements:
- Keep the behavior unchanged. Only the auth type value/name must change from none to default .
- Make sure all places use the same new value consistently.
- Check initialization flow and related files updated by php artisan init , because this command changes project files during setup.
- Update test classes in the tests directory.
- Update related fixtures used by tests.
Edge cases:
- Ensure old none value is not left in conditionals or test data.
- Ensure prompts or CLI defaults do not still expose none .
- Ensure generated files or snapshots do not still expect none .
Expected Outcome
What is the expected result?
The project uses default instead of none for the auth type everywhere that matters:
- CLI options and internal logic use default .
- Tests and fixtures use default .
- Init flow continues to work correctly with the renamed auth type.
- No functional behavior changes other than the renamed value.
Verification Scenarios
How can this be tested?
-
Search the codebase for auth type none .
- Confirm all relevant occurrences were replaced with default .
- Confirm no active code, tests, or fixtures still depend on none .
-
Run php artisan init <application_name> with auth type default .
- Confirm initialization completes successfully.
-
Test code paths that previously used none .
- Confirm they now work with
default and behavior is unchanged.
-
Run automated tests.
- Confirm updated tests in the tests directory pass.
- Confirm fixtures match the new auth type value.
Description
What needs to be done?
Rename the auth type value none to default in all relevant places of the project.
Scope of changes:
Requirements:
Edge cases:
Expected Outcome
What is the expected result?
The project uses default instead of none for the auth type everywhere that matters:
Verification Scenarios
How can this be tested?
Search the codebase for auth type none .
Run php artisan init <application_name> with auth type default .
Test code paths that previously used none .
defaultand behavior is unchanged.Run automated tests.