NelmioApiDocBundle/Formatter/SimpleFormatter.php

23 lines
345 B
PHP
Raw Normal View History

2012-04-12 01:28:36 +02:00
<?php
namespace Nelmio\ApiBundle\Formatter;
class SimpleFormatter extends AbstractFormatter
{
/**
* {@inheritdoc}
*/
protected function renderOne(array $data)
2012-04-12 01:28:36 +02:00
{
return $data;
}
/**
* {@inheritdoc}
*/
protected function renderOne(array $collection)
{
return $collection;
}
2012-04-12 01:28:36 +02:00
}