Files
archived-FOSRestBundle/Decoder/DecoderProviderInterface.php
Christian Flothmann f6823c30ae clean up docblocks
2020-03-06 16:05:42 +01:00

39 lines
777 B
PHP

<?php
/*
* This file is part of the FOSRestBundle package.
*
* (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FOS\RestBundle\Decoder;
/**
* Defines the interface of decoder providers.
*
* @author Igor Wiedler <igor@wiedler.ch>
*/
interface DecoderProviderInterface
{
/**
* Checks if a certain format is supported.
*
* @param string $format
*
* @return bool
*/
public function supports($format);
/**
* Provides decoders, possibly lazily.
*
* @param string $format
*
* @return DecoderInterface
*/
public function getDecoder($format);
}