False postivie on PHP Parallel Lint control directive

Created on 21 August 2024, 8 months ago

Problem/Motivation

PHP Parallel Lint is utilized by gitlab_templates "composer-lint" stage to validate PHP code is syntactically correct.
Modules can define their PHP compatibility to any level.
Modules may have some classes that are used only when newer version of PHP are present (A class that can only be called in Drupal 11 may use PHP8.3 features while the rest of the module is PHP 8.1 compatible)

PHP Parallel Lint validates that PHP files meet the version of PHP being tested.
PHP Parallel Lint provides a method to indicate a file is expected to only be compatible with specific versions of PHP and should otherwise be ignored.

The only acceptable method to provide this indication to PHP Parallel Lint is in the format of
<php //lint >= 8.3
See: https://github.com/php-parallel-lint/PHP-Parallel-Lint?tab=readme-ov-fil...

Failing to provide this control entry will result in task errors.

The above code snippit will produce the following phcps messages

----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
FOUND 5 ERRORS AFFECTING 1 LINE
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 1 | ERROR | [x] The PHP open tag must be followed by exactly one blank line (Drupal.WhiteSpace.OpenTagNewline.BlankLine)
 1 | ERROR | [ ] Namespaced classes, interfaces and traits should not begin with a file doc comment (Drupal.Commenting.FileComment.NamespaceNoFileDoc)
 1 | ERROR | [x] Inline comments must start with a capital letter (Drupal.Commenting.InlineComment.NotCapital)
 1 | ERROR | [x] Inline comments must end in full-stops, exclamation marks, question marks, colons, or closing parentheses (Drupal.Commenting.InlineComment.InvalidEndChar)
 1 | ERROR | [x] Comments may not appear after statements (Drupal.Commenting.PostStatementComment.Found)
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------
PHPCBF CAN FIX THE 4 MARKED SNIFF VIOLATIONS AUTOMATICALLY
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Steps to reproduce

Create a php file that has <php //lint >= 8.3 as its initial line. Run phpcs with the Drupal coding standard.

Proposed resolution

Allow php-parallel-lint controls

Remaining tasks

User interface changes

API changes

Data model changes

πŸ› Bug report
Status

Active

Version

8.3

Component

Coder Sniffer

Created by

πŸ‡ΊπŸ‡ΈUnited States cmlara

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

Comments & Activities

Production build 0.71.5 2024