[META] Add return types to hook implementations

Created on 24 October 2024, 5 months ago

Problem/Motivation

In 🌱 [Meta] Implement strict typing in existing code Active we want to add strict typing to existing code.

In ✨ Enforce return types in all new methods and functions RTBC we added thousands of methods and functions without a return type to the phpstan baseline.

Adding return type declarations to methods in classes can have backwards compatibility implications since these can be extended in contrib and custom modules. But fixing hook implementations is easy, because they can not be extended, at least while they are still procedural. The return type of each hook should also be predefined by the documentation of the hook.

This meta is to fix as many of these as possible.

Note that there is no inherent value in hook implementations having return types, but it reduces the size of the phpstan baseline, and gets us closer to a place where we can have return types everywhere.

Steps to reproduce

Find the number of functions with no return type in the phpstan baseline. Note not all of them are hooks, but many of them are.

$ grep "Function .* has no return type specified" core/.phpstan-baseline.php | wc -l
1907

Grepping this further reveals the following most common hooks occurrences:

hook_preprocess_HOOK: 263
hook_help: 83
hook_form_alter: 73
hook_theme: 45
hook_removed_post_updates: 41
hook_update_last_removed: 37
hook_install: 36
hook_uninstall: 11

That gives us 553 functions to update.

Proposed resolution

Open a child issue for each of the following:

  • Add void return type to all preprocess hook implementations
  • Add string return type to all hook_help implementations
  • Add void return type to all hook_form_alter implementations
  • Add array return type to all hook_theme implementations
  • Add array return type to all hook_removed_post_updates implementations
  • Add int return type to all hook_update_last_removed implementations
  • Add void return type to all hook_install and hook_uninstall implementations

If any outliers are identified in these issues they should be called out in separate issues to keep each of these issues simple.

Ideally these should be done before πŸ“Œ [PP-2] Convert Core hook implementations to Class or method based implementations Active to avoid having to update the baseline as these functions are moved.

Remaining tasks

User interface changes

Introduced terminology

API changes

Data model changes

Release notes snippet

πŸ“Œ Task
Status

Active

Version

11.0 πŸ”₯

Component

base system

Created by

πŸ‡¦πŸ‡ΊAustralia mstrelan

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

Comments & Activities

Production build 0.71.5 2024