Skip to content
This repository has been archived by the owner on Aug 10, 2022. It is now read-only.

CRUD docblock update with new methods example #4

Merged
merged 1 commit into from
Sep 15, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/Mvc/Controller/Crud.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,14 @@
*
* // attach more events
* }
*
*
* // instead using eventManager you can use method like
* protected function afterCreate()
* {
* parent::afterCreate();
* $this->response->redirect('user-admin/index');
* }
*
* // other actions
* }
* </code>
Expand Down