phpstan-drupal icon indicating copy to clipboard operation
phpstan-drupal copied to clipboard

Provide parameter type inspection for form alter hooks

Open mglaman opened this issue 3 years ago • 0 comments

Make sure hooks which implement hook_form_alter have correct parameter types.

hook_form_alter:

  • array $form
  • FormStateInterface $form_state
  • string $form_id

Note: strict rule idea, not added by default, but rejects hook_form_alter where $form_id is not used.

hook_form_FORM_ID_alter

  • array $form
  • FormStateInterface $form_state

mglaman avatar Feb 14 '22 02:02 mglaman