I'm having this issue where doxygen is adding the method twice in the documentation file. Is there a setting that stops auto-generation of documentation for methods within the .m file.
For example in the documentation I'll see something like whats below where the first definition of + (Status *)registerUser is from the header XXXXXX.h file where the second is from XXXXXX.m.
Header documentation :
/**
    @brief   Test
    Yada Yada
    @return     <#(description)#>
*/
+ (Status *)registerUser;
Output:
+ (Status *) registerUser               
Test Yada Yada.
Returns:
    <#(description)#> 
+ (Status *) registerUser               
<#(brief description)#> <#(comprehensive description)#>
registerUser
Returns:
    <#(description)#> 
Definition at line 24 of file XXXXXX.m.