mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 23:59:26 +03:00
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the NelmioApiDocBundle package.
|
|
*
|
|
* (c) Nelmio
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Nelmio\ApiDocBundle\Describer;
|
|
|
|
use EXSyst\Component\Swagger\Swagger;
|
|
|
|
/**
|
|
* Makes the swagger documentation valid even if there are missing fields.
|
|
*
|
|
* @author Ener-Getick <egetick@gmail.com>
|
|
*/
|
|
final class DefaultDescriber implements DescriberInterface
|
|
{
|
|
public function describe(Swagger $api)
|
|
{
|
|
// Info
|
|
$info = $api->getInfo();
|
|
if (null === $info->getTitle()) {
|
|
$info->setTitle('');
|
|
}
|
|
if (null === $info->getVersion()) {
|
|
$info->setVersion('0.0.0');
|
|
}
|
|
|
|
// Paths
|
|
$paths = $api->getPaths();
|
|
foreach ($paths as $uri => $path) {
|
|
foreach ($path->getMethods() as $method) {
|
|
$operation = $path->getOperation($method);
|
|
|
|
// Default Response
|
|
if (0 === iterator_count($operation->getResponses())) {
|
|
$defaultResponse = $operation->getResponses()->get('default');
|
|
$defaultResponse->setDescription('');
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|