diff --git a/core/modules/content_moderation/src/Form/ContentModerationConfigureEntityTypesForm.php b/core/modules/content_moderation/src/Form/ContentModerationConfigureEntityTypesForm.php index 427ee1fd99cce600be6590bb48122791e718814c..ca3cfb6a0049fd869a4fbc15cb8b3ee6d3ca4c33 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()]);