Current path: home/webdevt/www/schtroumpf.fr/vendor/api-platform/core/src/Core/Api/
?? Go up: /home/webdevt/www/schtroumpf.fr/vendor/api-platform/core/src/Core
<?php
/*
* This file is part of the API Platform project.
*
* (c) Kévin Dunglas <dunglas@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace ApiPlatform\Core\Api;
/**
* Extracts formats for a given operation according to the retrieved Metadata.
*
* @author Anthony GRASSIOT <antograssiot@free.fr>
*
* @deprecated since API Platform 2.5, use the "formats" attribute instead
*/
interface OperationAwareFormatsProviderInterface extends FormatsProviderInterface
{
/**
* Finds formats for an operation.
*/
public function getFormatsFromOperation(string $resourceClass, string $operationName, string $operationType): array;
}