BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
vendor
/
zircote
/
swagger-php
/
src
/
Processors
📤 Upload
📝 New File
📁 New Folder
Close
Editing: CleanUnmerged.php
<?php declare(strict_types=1); /** * @license Apache 2.0 */ namespace OpenApi\Processors; use OpenApi\Analysis; use OpenApi\Annotations as OA; class CleanUnmerged implements ProcessorInterface { public function __invoke(Analysis $analysis) { $split = $analysis->split(); $merged = $split->merged->annotations; $unmerged = $split->unmerged->annotations; /** @var OA\AbstractAnnotation $annotation */ foreach ($analysis->annotations as $annotation) { if (property_exists($annotation, '_unmerged')) { foreach ($annotation->_unmerged as $i => $item) { if ($merged->contains($item)) { unset($annotation->_unmerged[$i]); // Property was merged } } } } $analysis->openapi->_unmerged = []; foreach ($unmerged as $annotation) { $analysis->openapi->_unmerged[] = $annotation; } } }
Save
Cancel