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