Skip to content

Commit

Permalink
add return type
Browse files Browse the repository at this point in the history
  • Loading branch information
klausi committed Nov 11, 2023
1 parent 3edbde7 commit 797027e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Form/ServerForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ public function form(array $form, FormStateInterface $formState): array {
/**
* {@inheritdoc}
*/
protected function copyFormValuesToEntity(EntityInterface $entity, array $form, FormStateInterface $form_state) {
protected function copyFormValuesToEntity(EntityInterface $entity, array $form, FormStateInterface $form_state): void {
// Translate the debug flag from individual checkboxes to the enum value
// that the GraphQL library expects.
$debug_flag = $form_state->getValue('debug_flag');
Expand Down

0 comments on commit 797027e

Please sign in to comment.