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

160 lines
4.5 KiB
PHP

<?php
/**
* UserApiInterface
*
* 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\User;
/**
* UserApiInterface Interface Doc Comment
*
* @category Interface
* @package OpenAPI\Server\Api
* @author OpenAPI Generator team
* @link https://github.com/openapitools/openapi-generator
*/
interface UserApiInterface
{
/**
* Sets authentication method api_key
*
* @param string $value Value of the api_key authentication method.
*
* @return void
*/
public function setapi_key($value);
/**
* Operation createUser
*
* Create user
*
* @param \OpenAPI\Server\Model\User $user Created user object (required)
* @param \array $responseHeaders Additional HTTP headers to return with the response ()
*
* @return void
*/
public function createUser(User $user, &$responseCode, array &$responseHeaders): void;
/**
* Operation createUsersWithArrayInput
*
* Creates list of users with given input array
*
* @param \OpenAPI\Server\Model\User[] $user List of user object (required)
* @param \array $responseHeaders Additional HTTP headers to return with the response ()
*
* @return void
*/
public function createUsersWithArrayInput(array $user, &$responseCode, array &$responseHeaders): void;
/**
* Operation createUsersWithListInput
*
* Creates list of users with given input array
*
* @param \OpenAPI\Server\Model\User[] $user List of user object (required)
* @param \array $responseHeaders Additional HTTP headers to return with the response ()
*
* @return void
*/
public function createUsersWithListInput(array $user, &$responseCode, array &$responseHeaders): void;
/**
* Operation deleteUser
*
* Delete user
*
* @param \string $username The name that needs to be deleted (required)
* @param \array $responseHeaders Additional HTTP headers to return with the response ()
*
* @return void
*/
public function deleteUser($username, &$responseCode, array &$responseHeaders): void;
/**
* Operation getUserByName
*
* Get user by user name
*
* @param \string $username The name that needs to be fetched. Use user1 for testing. (required)
* @param \array $responseHeaders Additional HTTP headers to return with the response ()
*
* @return \OpenAPI\Server\Model\User
*/
public function getUserByName($username, &$responseCode, array &$responseHeaders): array|\OpenAPI\Server\Model\User;
/**
* Operation loginUser
*
* Logs user into the system
*
* @param \string $username The user name for login (required)
* @param \string $password The password for login in clear text (required)
* @param \array $responseHeaders Additional HTTP headers to return with the response ()
*
* @return \string
*/
public function loginUser($username, $password, &$responseCode, array &$responseHeaders): array|\string;
/**
* Operation logoutUser
*
* Logs out current logged in user session
*
* @param \array $responseHeaders Additional HTTP headers to return with the response ()
*
* @return void
*/
public function logoutUser(&$responseCode, array &$responseHeaders): void;
/**
* Operation updateUser
*
* Updated user
*
* @param \string $username name that need to be deleted (required)
* @param \OpenAPI\Server\Model\User $user Updated user object (required)
* @param \array $responseHeaders Additional HTTP headers to return with the response ()
*
* @return void
*/
public function updateUser($username, User $user, &$responseCode, array &$responseHeaders): void;
}