@@ -21,7 +21,7 @@ class ResourcePresenter extends BaseResource
2121 /**
2222 * Present a view of resource objects
2323 *
24- * @return Response|string
24+ * @return Response|string|void
2525 */
2626 public function index ()
2727 {
@@ -33,7 +33,7 @@ public function index()
3333 *
3434 * @param string|null $id
3535 *
36- * @return Response|string
36+ * @return Response|string|void
3737 */
3838 public function show ($ id = null )
3939 {
@@ -43,7 +43,7 @@ public function show($id = null)
4343 /**
4444 * Present a view to present a new single resource object
4545 *
46- * @return Response|string
46+ * @return Response|string|void
4747 */
4848 public function new ()
4949 {
@@ -54,7 +54,7 @@ public function new()
5454 * Process the creation/insertion of a new resource object.
5555 * This should be a POST.
5656 *
57- * @return Response|string
57+ * @return Response|string|void
5858 */
5959 public function create ()
6060 {
@@ -66,7 +66,7 @@ public function create()
6666 *
6767 * @param string|null $id
6868 *
69- * @return Response|string
69+ * @return Response|string|void
7070 */
7171 public function edit ($ id = null )
7272 {
@@ -79,7 +79,7 @@ public function edit($id = null)
7979 *
8080 * @param string|null $id
8181 *
82- * @return Response|string
82+ * @return Response|string|void
8383 */
8484 public function update ($ id = null )
8585 {
@@ -91,7 +91,7 @@ public function update($id = null)
9191 *
9292 * @param string|null $id
9393 *
94- * @return Response|string
94+ * @return Response|string|void
9595 */
9696 public function remove ($ id = null )
9797 {
@@ -103,7 +103,7 @@ public function remove($id = null)
103103 *
104104 * @param string|null $id
105105 *
106- * @return Response|string
106+ * @return Response|string|void
107107 */
108108 public function delete ($ id = null )
109109 {
0 commit comments