I'm trying to suppress "Line exceeds 100 characters" warning in the following code: ```php /** * @phan-param array{src:string,dst:string,headers?:array<string,string>,ignoreMissingSource?:bool} $params */ public function something( array $params ) { } ``` ``` 2 | WARNING | Line exceeds 100 characters; contains 108 characters ``` Even with `// phpcs:ignore` before the `@phan-param` line (or at the end of this line) the warning was still emitted.