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
Thanks for the package!!!
I wanna add the comment with property-read field such as Magic get<name>Attribute
Magic get<name>Attribute
For example
class Users extends Model { /** * @comment Get User's full name * * @return string */ public function getFullNameAttribute(): string { return $this->first_name . ' ' .$this->last_name ; } }
=>
/** * @property-read string $full_name Get User's full name * @mixin \Eloquent */ class Users extends Model { /** * @comment Get User's full name * * @return string */ public function getFullNameAttribute(): string { return $this->first_name . ' ' .$this->last_name ; } }
add the comment at the back of the property-read field.
The text was updated successfully, but these errors were encountered:
LGTM, happy to receive PR with tests
Sorry, something went wrong.
With pleasure, I'll tests and commit it later
Implemented with #1168 and released via https://github.com/barryvdh/laravel-ide-helper/releases/tag/v2.9.1
No branches or pull requests
Summary
Thanks for the package!!!
I wanna add the comment with property-read field such as
Magic get<name>Attribute
For example
=>
add the comment at the back of the property-read field.
The text was updated successfully, but these errors were encountered: