Skip to content

Commit

Permalink
Fix PathDeciderProcessor
Browse files Browse the repository at this point in the history
  • Loading branch information
yceruto committed Dec 1, 2023
1 parent 5f69770 commit 78e3f74
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/OpenApi/Processor/PathDeciderProcessor.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ public function __construct(

public function __invoke(Analysis $analysis): void
{
if (Generator::isDefault($analysis->openapi->paths)) {
return;
}

$el = new ExpressionLanguage(null, iterator_to_array($this->expressionLanguageProviders));

foreach ($analysis->openapi->paths as $index => $pathItem) {
Expand Down

0 comments on commit 78e3f74

Please sign in to comment.