forked from loafle/openapi-generator-original
* support symfony6 * fix issues with StrictJsonDeserialization * regenerate samples * add suggestions * update samples * support php 7.4 and symfony 5 * allow versions based on semantic versioning * regenerate sample * change method of determining result types * update samples * describe usage of bundle in symfony app * better documentation * fix duplicate auth methods * do not set namespace for default types * fix UploadedFile type * next try fixing auth * regenerate samples * fix: auth method shall not be duplicated * Revert "fix duplicate auth methods" This reverts commit 0dc418737b1379a30b7f22e7937819ba965c9ddb. * chore: regenerate samples * fix tests * regenerate sample * more fixes for tests * update tests * add kernel shutdown Co-authored-by: Benjamin Haeublein <benjaminh@testing-vm.lan.benjaminh.de> Co-authored-by: Renaud de Chivré <renaud@tahitiwebdesign.com>
81 lines
1.8 KiB
PHP
81 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* ApiServer
|
|
*
|
|
* PHP version 8.1.1
|
|
*
|
|
* @category Class
|
|
* @package OpenAPI\Server\Api
|
|
* @author OpenAPI Generator team
|
|
* @link https://github.com/openapitools/openapi-generator
|
|
*/
|
|
|
|
/**
|
|
* OpenAPI Petstore
|
|
*
|
|
* This is a sample server Petstore server. For this sample, you can use the api key `special-key` to test the authorization filters.
|
|
*
|
|
* The version of the OpenAPI document: 1.0.0
|
|
*
|
|
* 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\Api;
|
|
|
|
/**
|
|
* ApiServer Class Doc Comment
|
|
*
|
|
* PHP version 8.1.1
|
|
*
|
|
* @category Class
|
|
* @package OpenAPI\Server\Api
|
|
* @author OpenAPI Generator team
|
|
* @link https://github.com/openapitools/openapi-generator
|
|
*/
|
|
class ApiServer
|
|
{
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $apis = array();
|
|
|
|
/**
|
|
* Adds an API handler to the server.
|
|
*
|
|
* @param string $api An API name of the handle
|
|
* @param mixed $handler A handler to set for the given API
|
|
*/
|
|
public function addApiHandler($api, $handler)
|
|
{
|
|
if (isset($this->apis[$api])) {
|
|
throw new \InvalidArgumentException('API has already a handler: '.$api);
|
|
}
|
|
|
|
$this->apis[$api] = $handler;
|
|
}
|
|
|
|
/**
|
|
* Returns an API handler.
|
|
*
|
|
* @param string $api An API name of the handle
|
|
* @return mixed Returns a handler
|
|
* @throws \InvalidArgumentException When no such handler exists
|
|
*/
|
|
public function getApiHandler($api)
|
|
{
|
|
if (!isset($this->apis[$api])) {
|
|
throw new \InvalidArgumentException('No handler for '.$api.' implemented.');
|
|
}
|
|
|
|
return $this->apis[$api];
|
|
}
|
|
}
|