Drupal code style has rules to format PHPDoc section, here they are: https://www.drupal.org/docs/develop/standards/php/api-documentation-and-comment-standards
But now the extension doesn't match all of them:
- Class names should be in the fully qualified namespace.
- Should be an empty line between the description text and function parameters, and before the return.
Here is an example of the correct PHPDoc block and generated one:
Could you please implement this?