Add void return type to all preprocess hook implementations

Created on 24 October 2024, 5 months ago

Problem/Motivation

See πŸ“Œ [META] Add return types to hook implementations Active

Steps to reproduce

Find all occurrences in the baseline:

grep "Function .*_preprocess_.*\\\\.* has no return type specified" core/.phpstan-baseline.php

Proposed resolution

Add : void to each of them using these commands, and update a few stragglers after:

find core -type f -exec sed -i '/Implements hook_preprocess_/,/\(function .*_preprocess_.*(.*)\) *{/!b;/\(function .*_preprocess_.*(.*)\) *{/s/\(function .*_preprocess_.*(.*)\) *{/\1: void {/' {} +
find core -type f -exec sed -i 's/\(function template_preprocess_[^(]*(.*)\) {/\1: void {/' {} +
find core -type f -exec sed -i '/Implements template_preprocess_/,/\(function .*_preprocess_.*(.*)\) *{/!b;/\(function .*_preprocess_.*(.*)\) *{/s/\(function .*_preprocess_.*(.*)\) *{/\1: void {/' {} +

Remaining tasks

User interface changes

Introduced terminology

API changes

Data model changes

Release notes snippet

πŸ“Œ Task
Status

Active

Version

11.0 πŸ”₯

Component

theme system

Created by

πŸ‡¦πŸ‡ΊAustralia mstrelan

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

Merge Requests

Comments & Activities

  • Issue created by @mstrelan
  • πŸ‡¦πŸ‡ΊAustralia mstrelan
  • Pipeline finished with Failed
    5 months ago
    Total: 595s
    #320015
  • Pipeline finished with Success
    5 months ago
    Total: 2421s
    #320048
  • πŸ‡ΊπŸ‡ΈUnited States smustgrave

    Seems straight forward and a great start!

  • πŸ‡³πŸ‡ΏNew Zealand quietone

    Applied the diff and there some instances not changed.

    $ grep --exclude-dir={assets,node_modules,vendor.phpstan=tmp} --exclude=\*.cspellcache --exclude=\*.yarn -r '^function.*_preprocess_' core | grep -v void
    core/lib/Drupal/Core/Render/theme.api.php:function hook_preprocess_HOOK(&$variables) {
    core/lib/Drupal/Core/Render/theme.api.php:function hook_template_preprocess_default_variables_alter(&$variables) {
    core/themes/claro/claro.theme:function _claro_preprocess_file_and_image_widget(array &$variables) {
    core/includes/theme.inc:function _template_preprocess_default_variables() {
    core/modules/system/tests/themes/test_theme/test_theme.theme:function test_theme_preprocess_theme_test_preprocess_suggestions__suggestion(&$variables) {
    core/modules/system/tests/themes/test_theme/test_theme.theme:function test_theme_preprocess_theme_test_preprocess_suggestions__kitten(&$variables) {
    core/modules/system/tests/themes/test_theme/test_theme.theme:function test_theme_preprocess_theme_test_preprocess_suggestions__kitten__flamingo(&$variables) {
    core/modules/system/tests/themes/test_theme/test_theme.theme:function test_theme_preprocess_theme_test_preprocess_suggestions__kitten__meerkat__tarsier__moose(&$variables) {
    core/modules/system/tests/modules/theme_test/theme_test.module:function theme_test_theme_suggestions_theme_test_preprocess_suggestions($variables) {
    

    Should they be done here or somewhere else?

  • πŸ‡¦πŸ‡ΊAustralia mstrelan
    • hook_preprocess_HOOK should be updated here
    • hook_template_preprocess_default_variables_alter is a separate hook. I think once we get through the most common hooks we could batch a bunch of less common hooks together.
    • _claro_preprocess_file_and_image_widget is not a hook implementation
    • _template_preprocess_default_variables is not a hook implementation
    • test_theme_preprocess_theme_test_preprocess_suggestions__* look like they should be updated here
    • theme_test_theme_suggestions_theme_test_preprocess_suggestions implements theme_test_theme_suggestions_theme_test_preprocess_suggestions and furthermore it returns an array
  • First commit to issue fork.
  • Pipeline finished with Canceled
    5 months ago
    Total: 272s
    #339113
  • Pipeline finished with Canceled
    5 months ago
    Total: 124s
    #339118
  • πŸ‡©πŸ‡ͺGermany tstoeckler Essen, Germany

    Thanks for the thorough checking @quietone and the detailed instructions @mstrelan. I fixed the ones you mentioned, hope I didn't miss anything.

  • Pipeline finished with Success
    5 months ago
    Total: 522s
    #339124
  • πŸ‡¦πŸ‡ΊAustralia mstrelan

    Thanks @tstoeckler, this looks good to me. Will leave for someone else to RTBC since I did the original MR.

  • πŸ‡ΊπŸ‡ΈUnited States nicxvan

    This looks great but had it been rebase since the hook conversion? The return hints will still apply but baseline will need regenerating.

    If it was rebased then I can rtbc.

  • πŸ‡¦πŸ‡ΊAustralia mstrelan

    @nicxvan yes, was rebased first, and I checked it merges cleanly to 11.x

  • πŸ‡ΊπŸ‡ΈUnited States nicxvan

    Great!

    • quietone β†’ committed 49b64811 on 11.1.x
      Issue #3483299 by tstoeckler, mstrelan, nicxvan: Add void return type to...
    • quietone β†’ committed be64557b on 11.x
      Issue #3483299 by tstoeckler, mstrelan, nicxvan: Add void return type to...
  • πŸ‡³πŸ‡ΏNew Zealand quietone

    Committed/pushed to 11.x and cherry-picked to 11.1.x thanks!

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024