Drupal core doesn't use any standard regarding arrow function spacing.
# \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".
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.
Or we could do nothing and let both be acceptable.
Active
8.3
Coder Sniffer