Drupal.WhiteSpace.ScopeClosingBrace.Indent detects indentation based on the opening brace which could be itself incorrect

Created on 24 March 2024, about 1 year ago
Updated 13 April 2024, 12 months ago

Problem/Motivation

This code produces a correct error for the first line with the return, and an incorrect error for the closing brace line:

  protected function getStateNameFromFieldValue(mixed $value): string {
     return match ((bool) $value) {
      TRUE => 'true',
      FALSE  => 'false',
    };
  }
66 | ERROR | [x] Line indented incorrectly; expected 4 spaces, found 5 (Drupal.WhiteSpace.ScopeIndent.IncorrectExact)
69 | ERROR | [x] Closing brace indented incorrectly; expected 5 spaces, found 4 (Drupal.WhiteSpace.ScopeClosingBrace.Indent)

It shouldn't be 5 spaces, but presumably it's thinking it should be 5 because the opening brace is incorrectly 5.

Steps to reproduce

Proposed resolution

Remaining tasks

User interface changes

API changes

Data model changes

๐Ÿ› Bug report
Status

Closed: works as designed

Version

8.3

Component

Coder Sniffer

Created by

๐Ÿ‡ฌ๐Ÿ‡งUnited Kingdom joachim

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

Comments & Activities

  • Issue created by @joachim
  • ๐Ÿ‡ฎ๐Ÿ‡ณIndia Raveen Kumar

    Raveen Thakur โ†’ made their first commit to this issueโ€™s fork.

  • Status changed to Closed: works as designed 12 months ago
  • ๐Ÿ‡ฆ๐Ÿ‡นAustria klausi ๐Ÿ‡ฆ๐Ÿ‡น Vienna

    Thanks for reporting!

    Exactly, it reports consistently that the closing brace needs to be where the opening brace currently is.

    That does not matter when you run phpcbf it will fix everything correctly for you.

    So I don't think we need to do anything here.

Production build 0.71.5 2024