InvalidDocblock
A docblock contains a malformed or unrecognised annotation.
Example
Section titled “Example”<?php/** * @return int| */function getId(): int { return 1; } // trailing | is invalid type syntaxHow to fix
Section titled “How to fix”Fix the annotation syntax. Refer to Docblock Annotations for supported forms.