Skip to content

Commit

Permalink
feat(examples-prepartor): fix missing return
Browse files Browse the repository at this point in the history
  • Loading branch information
sidux committed Apr 4, 2024
1 parent ae44efe commit cc21437
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Preparator/ExamplesPreparator.php
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ function (OperationExample $example) {
$example->setStatusCode($this->config->response->statusCode);
}
$example->setAutoComplete($this->config->autoComplete);
$this->buildTestCase($example);

return $this->buildTestCase($example);
}
)
;
Expand Down

0 comments on commit cc21437

Please sign in to comment.