20Tauri / DoxyDoxygen

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

[PHP] FQN for return type #171

Closed maarsson closed 9 months ago

maarsson commented 9 months ago

Using the setting "php_generate_fully_qualified_name": true it generates docblock with fully qualified parameters, as expected. However the return type is now FQN, only the short class name.

    /**
     * { function_description }
     *
     * @param \App\Models\Order $order 
     *
     * @return Order ( description_of_the_return_value )
     */
    public function refresh(Order $order): Order
    {
    }

In this example it should be @return \App\Models\Order ( 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)