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