-
Notifications
You must be signed in to change notification settings - Fork 21
/
OpenAPIServerBundle.php
executable file
·51 lines (46 loc) · 1.11 KB
/
OpenAPIServerBundle.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
* OpenAPIServerBundle.
*
* PHP version 8.1.1
*
* @category Class
*
* @author OpenAPI Generator team
*
* @see https://github.com/openapitools/openapi-generator
*/
/**
* Catroweb API.
*
* API for the Catrobat Share Platform
*
* The version of the OpenAPI document: v1.6.0
* Contact: webmaster@catrobat.org
* Generated by: https://github.com/openapitools/openapi-generator.git
*/
/**
* NOTE: This class is auto generated by the openapi generator program.
* https://github.com/openapitools/openapi-generator
* Do not edit the class manually.
*/
namespace OpenAPI\Server;
use OpenAPI\Server\DependencyInjection\Compiler\OpenAPIServerApiPass;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\HttpKernel\Bundle\Bundle;
/**
* OpenAPIServerBundle Class Doc Comment.
*
* @category Class
*
* @author OpenAPI Generator team
*
* @see https://github.com/openapitools/openapi-generator
*/
class OpenAPIServerBundle extends Bundle
{
public function build(ContainerBuilder $container): void
{
$container->addCompilerPass(new OpenAPIServerApiPass());
}
}