20Tauri / DoxyDoxygen

The last word in code documentation generation
140 stars 5 forks source link

[PHP] FQN for aliases #172

Closed maarsson closed 9 months ago

maarsson commented 9 months ago

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 )

20Tauri commented 9 months ago

Thank you for your report, this case has been corrected and will be included in the next version.

20Tauri commented 9 months ago

Fixed in 1.0.1 (evolution branch only)