%PDF- %PDF-
Direktori : /var/www/html/shaban/duassis/api/vendor/zircote/swagger-php/src/Processors/ |
Current File : //var/www/html/shaban/duassis/api/vendor/zircote/swagger-php/src/Processors/CleanUnmerged.php |
<?php declare(strict_types=1); /** * @license Apache 2.0 */ namespace OpenApi\Processors; use OpenApi\Analysis; use SplObjectStorage; /** * */ class CleanUnmerged { public function __invoke(Analysis $analysis) { $split = $analysis->split(); $merged = $split->merged->annotations; $unmerged = $split->unmerged->annotations; 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; } } }