Benjamin Häublein 77fa028bb3
[php-symfony] Symfony6 support (#11810)
* 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>
2022-05-25 15:34:50 +08:00

175 lines
5.1 KiB
PHP

<?php
/**
* PetApiInterface
*
* PHP version 8.1.1
*
* @category Class
* @package OpenAPI\Server
* @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;
use Symfony\Component\HttpFoundation\File\UploadedFile;
use OpenAPI\Server\Model\ApiResponse;
use OpenAPI\Server\Model\Pet;
/**
* PetApiInterface Interface Doc Comment
*
* @category Interface
* @package OpenAPI\Server\Api
* @author OpenAPI Generator team
* @link https://github.com/openapitools/openapi-generator
*/
interface PetApiInterface
{
/**
* Sets authentication method petstore_auth
*
* @param string $value Value of the petstore_auth authentication method.
*
* @return void
*/
public function setpetstore_auth($value);
/**
* Sets authentication method api_key
*
* @param string $value Value of the api_key authentication method.
*
* @return void
*/
public function setapi_key($value);
/**
* Operation addPet
*
* Add a new pet to the store
*
* @param \OpenAPI\Server\Model\Pet $pet Pet object that needs to be added to the store (required)
* @param \array $responseHeaders Additional HTTP headers to return with the response ()
*
* @return \OpenAPI\Server\Model\Pet
*/
public function addPet(Pet $pet, &$responseCode, array &$responseHeaders): array|\OpenAPI\Server\Model\Pet;
/**
* Operation deletePet
*
* Deletes a pet
*
* @param \int $petId Pet id to delete (required)
* @param \string $apiKey (optional)
* @param \array $responseHeaders Additional HTTP headers to return with the response ()
*
* @return void
*/
public function deletePet($petId, $apiKey = null, &$responseCode, array &$responseHeaders): void;
/**
* Operation findPetsByStatus
*
* Finds Pets by status
*
* @param \string[] $status Status values that need to be considered for filter (required) (deprecated)
* @param \array $responseHeaders Additional HTTP headers to return with the response ()
*
* @return \OpenAPI\Server\Model\Pet[]
*/
public function findPetsByStatus(array $status, &$responseCode, array &$responseHeaders): iterable;
/**
* Operation findPetsByTags
*
* Finds Pets by tags
*
* @param \string[] $tags Tags to filter by (required)
* @param \array $responseHeaders Additional HTTP headers to return with the response ()
*
* @return \OpenAPI\Server\Model\Pet[]
* @deprecated
*/
public function findPetsByTags(array $tags, &$responseCode, array &$responseHeaders): iterable;
/**
* Operation getPetById
*
* Find pet by ID
*
* @param \int $petId ID of pet to return (required)
* @param \array $responseHeaders Additional HTTP headers to return with the response ()
*
* @return \OpenAPI\Server\Model\Pet
*/
public function getPetById($petId, &$responseCode, array &$responseHeaders): array|\OpenAPI\Server\Model\Pet;
/**
* Operation updatePet
*
* Update an existing pet
*
* @param \OpenAPI\Server\Model\Pet $pet Pet object that needs to be added to the store (required)
* @param \array $responseHeaders Additional HTTP headers to return with the response ()
*
* @return \OpenAPI\Server\Model\Pet
*/
public function updatePet(Pet $pet, &$responseCode, array &$responseHeaders): array|\OpenAPI\Server\Model\Pet;
/**
* Operation updatePetWithForm
*
* Updates a pet in the store with form data
*
* @param \int $petId ID of pet that needs to be updated (required)
* @param \string $name Updated name of the pet (optional)
* @param \string $status Updated status of the pet (optional)
* @param \array $responseHeaders Additional HTTP headers to return with the response ()
*
* @return void
*/
public function updatePetWithForm($petId, $name = null, $status = null, &$responseCode, array &$responseHeaders): void;
/**
* Operation uploadFile
*
* uploads an image
*
* @param \int $petId ID of pet to update (required)
* @param \string $additionalMetadata Additional data to pass to server (optional)
* @param \UploadedFile $file file to upload (optional)
* @param \array $responseHeaders Additional HTTP headers to return with the response ()
*
* @return \OpenAPI\Server\Model\ApiResponse
*/
public function uploadFile($petId, $additionalMetadata = null, UploadedFile $file = null, &$responseCode, array &$responseHeaders): array|\OpenAPI\Server\Model\ApiResponse;
}