Skip to content

Commit

Permalink
fix: "configureOptions" not called from exporter type extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
Kreyu committed Sep 13, 2023
1 parent 6d9f5da commit 3609b5f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Exporter/Type/ResolvedExporterType.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@ public function getOptionsResolver(): OptionsResolver
}

$this->innerType->configureOptions($this->optionsResolver);

foreach ($this->typeExtensions as $extension) {
$extension->configureOptions($this->optionsResolver);
}
}

return $this->optionsResolver;
Expand Down

0 comments on commit 3609b5f

Please sign in to comment.