*/ namespace Flasher\Prime\Response\Presenter; use Flasher\Prime\Response\Response; final class ArrayPresenter implements PresenterInterface { /** * {@inheritdoc} */ public function render(Response $response) { return $response->toArray(); } }