Hi everyone I'm in the process of learning php and I keep running into this convention of comments with an @sometoken within it.
example 1
/**
* Parses the contents of all pages
*
* @see DummyPlugin::onSinglePageLoaded()
*/
example 2
/**
* Create pagination object for the page.
*
* @param Event $event
*/
What is the purpose of this convention?