Create a plugin with a docblock identifying one event
/**
@name Example
@PluginEvents OnWebPagePrerender
*/
Run repoman import
Change the docblock to specify a different event, e.g.
@PluginEvents OnLoadWebDocument
Run repoman import again
Expected behavior is that the plugin is associated with only the latest event (OnLoadWebDocument). Actual behavior is that the plugin is associated with both events (OnLoadWebDocument and OnWebPagePrerender)
To reproduce:
Create a plugin with a docblock identifying one event
/**
Expected behavior is that the plugin is associated with only the latest event (OnLoadWebDocument). Actual behavior is that the plugin is associated with both events (OnLoadWebDocument and OnWebPagePrerender)