mirror of
https://github.com/retailcrm/NelmioApiDocBundle.git
synced 2025-02-02 15:51:48 +03:00
23 lines
345 B
PHP
23 lines
345 B
PHP
<?php
|
|
|
|
namespace Nelmio\ApiBundle\Formatter;
|
|
|
|
class SimpleFormatter extends AbstractFormatter
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function renderOne(array $data)
|
|
{
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function renderOne(array $collection)
|
|
{
|
|
return $collection;
|
|
}
|
|
}
|