@phpstan-ignore-next-line annotation collides with PHPCS

Created on 31 March 2025, 6 days ago

Problem/Motivation

This

class Schema extends BaseMySqlSchema {

  /**
   * {@inheritdoc}
   */
  // @phpstan-ignore-next-line missingType.return
  public function addField($table, $field, $spec, $keys_new = []) {
    if ..

fails PHPCS. If you move the @phpstan annotation above the docblock, PHPStan fails because it's not the next line to be ignored.

This

class Schema extends BaseMySqlSchema {

  // @phpcs:disable
  /**
   * {@inheritdoc}
   */
  // @phpstan-ignore-next-line missingType.return
  public function addField($table, $field, $spec, $keys_new = []) {
  // @phpcs:enable
    if ..

works but obviously has a risk of introducing uncompliant code.

Proposed resolution

Skip @phpstan-xxx inline annotations when sniffing.

Remaining tasks

User interface changes

API changes

Data model changes

🐛 Bug report
Status

Active

Version

8.3

Component

Coder Sniffer

Created by

🇮🇹Italy mondrake 🇮🇹

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Production build 0.71.5 2024