We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When creating a Eloquent Model with a Factory, the output is like:
class Customer extends Model { use HasFactory; }
Currently, Laravel appends the Factory generics to the docblock, like (see laravel/framework#52855):
https://github.com/laravel/laravel/blob/657070ea8a95ec269d0ed4c801cead04976a871a/app/Models/User.php#L12-L13
Same goes for the factories:
https://github.com/laravel/laravel/blob/657070ea8a95ec269d0ed4c801cead04976a871a/database/factories/UserFactory.php#L9-L12
Can we also apply those to the generated files?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature Description
When creating a Eloquent Model with a Factory, the output is like:
Currently, Laravel appends the Factory generics to the docblock, like (see laravel/framework#52855):
https://github.com/laravel/laravel/blob/657070ea8a95ec269d0ed4c801cead04976a871a/app/Models/User.php#L12-L13
Same goes for the factories:
https://github.com/laravel/laravel/blob/657070ea8a95ec269d0ed4c801cead04976a871a/database/factories/UserFactory.php#L9-L12
Can we also apply those to the generated files?
The text was updated successfully, but these errors were encountered: