From 7deaa481d911bfcda88cdc819503d1f048e242cc Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Wed, 8 May 2024 16:56:17 +0100 Subject: [PATCH] Issue #3445788 by andypost: [PHP 8.4] Fix phpstan job for ContentModerationConfigureEntityTypesForm --- .../src/Form/ContentModerationConfigureEntityTypesForm.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/modules/content_moderation/src/Form/ContentModerationConfigureEntityTypesForm.php b/core/modules/content_moderation/src/Form/ContentModerationConfigureEntityTypesForm.php index 427ee1fd99cc..ca3cfb6a0049 100644 --- a/core/modules/content_moderation/src/Form/ContentModerationConfigureEntityTypesForm.php +++ b/core/modules/content_moderation/src/Form/ContentModerationConfigureEntityTypesForm.php @@ -98,7 +98,7 @@ public function getFormId() { /** * {@inheritdoc} */ - public function buildForm(array $form, FormStateInterface $form_state, WorkflowInterface $workflow = NULL, $entity_type_id = NULL) { + public function buildForm(array $form, FormStateInterface $form_state, ?WorkflowInterface $workflow = NULL, $entity_type_id = NULL) { $this->workflow = $workflow; try { $this->entityType = $this->entityTypeManager->getDefinition($entity_type_id); @@ -218,7 +218,7 @@ public function ajaxCallback() { /** * Route title callback. */ - public function getTitle(WorkflowInterface $workflow = NULL, $entity_type_id) { + public function getTitle(WorkflowInterface $workflow, $entity_type_id) { $this->entityType = $this->entityTypeManager->getDefinition($entity_type_id); $title = $this->t('Select the @entity_type types for the @workflow workflow', ['@entity_type' => $this->entityType->getLabel(), '@workflow' => $workflow->label()]); -- GitLab