<?php
namespace PrettusRepositoryContracts;
/**
* Interface PresenterInterface
* @package PrettusRepositoryContracts
*/
interface PresenterInterface
{
/**
* Prepare data to present
*
* @param $data
*
* @return mixed
*/
public function present($data);
}