Using the setting "php_generate_fully_qualified_name": true and also using import aliases it generates docblock with the alias instead of fully qualified class name.
use App\Http\Requests\User\CourseRequest as UserCourseRequest;
/**
* { function_description }
*
* @param UserCourseRequest $request
*/
public function store(UserCourseRequest $request)
{
}
In this example it should be @param \App\Http\Requests\User\CourseRequest ( description_of_the_return_value )
Using the setting
"php_generate_fully_qualified_name": true
and also using import aliases it generates docblock with the alias instead of fully qualified class name.In this example it should be
@param \App\Http\Requests\User\CourseRequest ( description_of_the_return_value )