Drupal.Semantics.ConstantName.ConstantStart false positives

Created on 30 September 2024, 6 months ago

Problem/Motivation

The constant 'FISH' is not detected as an error when placed in the core search.module file.

Steps to reproduce

Add the sniff to core/phpcs.xml.dsik
Add the following to core/search.module

const FISH = 'search';

define ('CAT', 1);

run phpcs
Only the error for 'CAT' is reported, All constants defined by a module must be prefixed with the module's name, expected "SEARCH_CAT" but found "CAT" (Drupal.Semantics.ConstantName.ConstantStart)

Proposed resolution

Remaining tasks

User interface changes

API changes

Data model changes

Feature request
Status

Active

Version

8.3

Component

Review/Rules

Created by

🇳🇿New Zealand quietone

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

Comments & Activities

  • Issue created by @quietone
  • Status changed to Postponed: needs info 3 months ago
  • 🇦🇹Austria klausi 🇦🇹 Vienna

    Works for me.

    Note that if you are just testing one file you need to specify the module extension again (no idea why):

    cd core
    ../vendor/bin/phpcs -p --extensions=module modules/search/search.module
    

    Let me know if that works!

  • 🇳🇿New Zealand quietone

    With the sniff enabled, for core, the many constants in module files are not reported as errors. Such as \Drupal\user\Controller\UserAuthenticationController::LOGGED_IN

  • 🇦🇹Austria klausi 🇦🇹 Vienna

    Hm, but that is a class constant. Of course class constants MUST NOT be prefixed with the module name as that would make them unnecessarily long. Class constants are already tied to a class with namespace, so no prefixing necessary.

    The sniff Drupal.Semantics.ConstantName is about legacy global constants in the global scope that must not be used in modern Drupal anymore. (They cannot be autoloaded for example as far as I know)

    We could add a new sniff to forbid global constants all together? Would probably make sense to open a new coding standards issue for that if we don't have it yet.

    Does that answer your concern? Then I think we can close this.

  • 🇳🇿New Zealand quietone

    Yes, I think I just misinterpreted the error message and how 'module' is used. So, this is working as designed.

Production build 0.71.5 2024