Completed
Push — 2.0 ( 5e0ce1...28bc73 )
by Nicolas
03:11
created
Providers/RouteServiceProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     }
28 28
 
29 29
     /**
30
-     * @return string
30
+     * @return boolean
31 31
      */
32 32
     protected function getApiRoute()
33 33
     {
Please login to merge, or discard this patch.
Http/Controllers/Admin/PageController.php 2 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      * Store a newly created resource in storage.
46 46
      *
47 47
      * @param  CreatePageRequest $request
48
-     * @return Response
48
+     * @return \Illuminate\Http\RedirectResponse
49 49
      */
50 50
     public function store(CreatePageRequest $request)
51 51
     {
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      *
75 75
      * @param Page $page
76 76
      * @param  UpdatePageRequest $request
77
-     * @return Response
77
+     * @return \Illuminate\Http\RedirectResponse
78 78
      */
79 79
     public function update(Page $page, UpdatePageRequest $request)
80 80
     {
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
      * Remove the specified resource from storage.
94 94
      *
95 95
      * @param Page $page
96
-     * @return Response
96
+     * @return \Illuminate\Http\RedirectResponse
97 97
      */
98 98
     public function destroy(Page $page)
99 99
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Modules\Page\Http\Requests\CreatePageRequest;
6 6
 use Modules\Page\Http\Requests\UpdatePageRequest;
7 7
 use Modules\Page\Repositories\PageRepository;
8
-use Modules\Page\Events\PageWasDeleted;
9 8
 
10 9
 class PageController extends AdminBaseController
11 10
 {
Please login to merge, or discard this patch.