src/Library/Api/build/OpenAPIServerBundle.php line 44

Open in your IDE?
  1. <?php
  2. /**
  3.  * OpenAPIServerBundle
  4.  *
  5.  * PHP version 7.1.3
  6.  *
  7.  * @category Class
  8.  * @package  App\Library\Api\build
  9.  * @author   OpenAPI Generator team
  10.  * @link     https://github.com/openapitools/openapi-generator
  11.  */
  12. /**
  13.  * Vensta API
  14.  *
  15.  * (Rev. 07.05.24)
  16.  *
  17.  * The version of the OpenAPI document: 1.0.0
  18.  * 
  19.  * Generated by: https://github.com/openapitools/openapi-generator.git
  20.  *
  21.  */
  22. /**
  23.  * NOTE: This class is auto generated by the openapi generator program.
  24.  * https://github.com/openapitools/openapi-generator
  25.  * Do not edit the class manually.
  26.  */
  27. namespace App\Library\Api\build;
  28. use Symfony\Component\HttpKernel\Bundle\Bundle;
  29. use Symfony\Component\DependencyInjection\ContainerBuilder;
  30. use App\Library\Api\build\DependencyInjection\Compiler\OpenAPIServerApiPass;
  31. /**
  32.  * OpenAPIServerBundle Class Doc Comment
  33.  *
  34.  * @category Class
  35.  * @package  App\Library\Api\build
  36.  * @author   OpenAPI Generator team
  37.  * @link     https://github.com/openapitools/openapi-generator
  38.  */
  39. class OpenAPIServerBundle extends Bundle
  40. {
  41.     public function build(ContainerBuilder $container)
  42.     {
  43.         $container->addCompilerPass(new OpenAPIServerApiPass());
  44.     }
  45. }