/**
* @see CommonModule::onLoad()
* CommonModule constructor.
* You can not change the constructor directly, but you can use onLoad function instead.
*/
final function __construct()
Указывать
@see перед описанием (
summary) неправильно.
https://www.phpdoc.org/docs/latest/guides/docblock...
Нужно изменить порядок, сначала должно идти
summary, затем может идти
description и только потом
tags (
@see - относится к
tags):
/**
* CommonModule constructor.
* You can not change the constructor directly, but you can use onLoad function instead.
*
* @see CommonModule::onLoad()
*/
final function __construct()