Standardize spacing after "fn" of arrow function

Created on 12 March 2024, about 1 year ago

Problem/Motivation

Drupal core doesn't use any standard regarding arrow function spacing.

Steps to reproduce

# \Drupal\Core\Config\Schema\SchemaCheckTrait.php
fn(ConstraintViolation $v) => !static::isViolationForIgnoredPropertyPath($v)

# OR, in \Drupal\Core\Form\ConfigTarget.php
    array_walk($value, fn (mixed $value, string $property) => match ($value) {
      // No-op.
      ToConfig::NoOp => NULL,
      // Delete.
      ToConfig::DeleteKey => $config->clear($property),
      // Set.
      default => $config->set($property, $value),
    });

The first example has fn(...) with no space after "fn". The second example has fn (...) with a space after "fn".

Proposed resolution

The Drupal coding standards for PHP page does say

Anonymous functions should have a space between "function" and its parameters, as in the following example:

array_map(function ($item) use ($id) {
  return $item[$id];
}, $items);

However, this isn't for arrow functions, which are newer. When searching in a codebase that contains lots of contrib modules, almost all of the arrow functions, including the ones in Core, use arrow functions without a space. For reference, Core 10.2.4 has 46 uses of arrow functions without a space. There are only 5 occurrences of an arrow function with a space in the same version of Core.

Remaining tasks

  1. Create a coding standard.
  2. Update Drupal Core to use and conform to that standard.

Or we could do nothing and let both be acceptable.

User interface changes

API changes

Data model changes

Feature request
Status

Active

Version

8.3

Component

Coder Sniffer

Created by

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

Comments & Activities

Production build 0.71.5 2024