Skip to content

Commit

Permalink
Merge pull request #9283 from Flole998/fixopenapi
Browse files Browse the repository at this point in the history
Fix openAPI specification build order
  • Loading branch information
turbo124 committed Feb 10, 2024
2 parents 735cc55 + 09801f7 commit 0ccf344
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Console/Commands/OpenApiYaml.php
Expand Up @@ -78,8 +78,8 @@ public function handle()

Storage::disk('base')->append('/openapi/api-docs.yaml', file_get_contents($path.'/components.yaml'));

Storage::disk('base')->append('/openapi/api-docs.yaml', file_get_contents($path.'/components/responses.yaml'));
Storage::disk('base')->append('/openapi/api-docs.yaml', file_get_contents($path.'/components/examples.yaml'));
Storage::disk('base')->append('/openapi/api-docs.yaml', file_get_contents($path.'/components/responses.yaml'));

$directory = new DirectoryIterator($path . '/components/responses/');

Expand Down

0 comments on commit 0ccf344

Please sign in to comment.