@return void Why this command is used in laravel model project?

In Laravel, the @return void comment is used in PHPDoc-style comments to indicate the return type of a method in a class, particularly in PHPDoc comments for Laravel Eloquent models. For example, consider the following Laravel Eloquent model method: Here’s what this means: So, in this example, the performAction() method is documented to not return … Read more@return void Why this command is used in laravel model project?