You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug description
After updating to version 0.7 and running the compose command, I noticed that the word for was prefixed with the classmap_prefix_ defined in the composer configuration, for our dependencies using classmap.
As an example, here is an original docblock:
/**
* Maybe handle
*
* Check for correct nonce and pass to handler.
*/
and the resulting one:
/**
* Maybe handle
*
* Check Prefix_for correct nonce and pass to handler.
*/
It also did the same thing inside inline comments: // If positive match is found, store the results for debug. // If positive match is found, store the results Prefix_for debug.
I didn't see any other word on which this happened.
It's not breaking anything as far as I can see, but something for you to look into. And fixing it will also prevent unexpected diff on our repos when updating dependencies.
The text was updated successfully, but these errors were encountered:
Bug description
After updating to version 0.7 and running the
compose
command, I noticed that the wordfor
was prefixed with theclassmap_prefix_
defined in the composer configuration, for our dependencies using classmap.As an example, here is an original docblock:
and the resulting one:
It also did the same thing inside inline comments:
// If positive match is found, store the results for debug.
// If positive match is found, store the results Prefix_for debug.
I didn't see any other word on which this happened.
It's not breaking anything as far as I can see, but something for you to look into. And fixing it will also prevent unexpected diff on our repos when updating dependencies.
The text was updated successfully, but these errors were encountered: