From cc21437e48e50040ca1bbcfd5bd172cb4efc031c Mon Sep 17 00:00:00 2001 From: sidux Date: Thu, 4 Apr 2024 15:01:15 +0200 Subject: [PATCH] feat(examples-prepartor): fix missing return --- src/Preparator/ExamplesPreparator.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Preparator/ExamplesPreparator.php b/src/Preparator/ExamplesPreparator.php index 92836bd..1cc5bbc 100644 --- a/src/Preparator/ExamplesPreparator.php +++ b/src/Preparator/ExamplesPreparator.php @@ -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); } ) ;