0]); } /** * Store * * Store the param on the database * @param Email $email */ function store(Email $email) { var_dump($email); } /** * Search * * Store the param on the database * @param Email $email */ function search() { } /** * Show * * Render one register * * @param Email $email */ function show(Email $email) { } /** * Edit * * Render the formular for a database Email * * @param Email $email */ function edit(Email $email) { Output::render('form', $email); } /** * Update * Store the changes of the param on the database * * @param Email $email */ function update(Email $email) { } /** * Destroy * If the object has soft delete. * * @param Email $email */ function destroy(Email $email) { } /** * Purge * Remove object even with soft delete. * * @param Email $email */ function purge(Email $email) { } }