@@ -65,7 +65,7 @@ |
||
65 | 65 | |
66 | 66 | /** |
67 | 67 | * @param $extension |
68 | - * @param $action |
|
68 | + * @param string $action |
|
69 | 69 | * @return \Illuminate\Http\RedirectResponse |
70 | 70 | * @throws \Exception |
71 | 71 | */ |
@@ -123,7 +123,7 @@ |
||
123 | 123 | /** |
124 | 124 | * Display the specified post. |
125 | 125 | * |
126 | - * @return Response |
|
126 | + * @return ModelController |
|
127 | 127 | */ |
128 | 128 | public function all($modelName, $data = null, $sort = null) |
129 | 129 | { |
@@ -1,13 +1,10 @@ |
||
1 | 1 | <?php namespace Mascame\Artificer\Http\Controllers; |
2 | 2 | |
3 | -use Event; |
|
4 | 3 | use Input; |
5 | 4 | use Mascame\Artificer\Options\AdminOption; |
6 | -use Mascame\Notify\Notify; |
|
7 | 5 | use Redirect; |
8 | 6 | use Request; |
9 | 7 | use Response; |
10 | -use Session; |
|
11 | 8 | use URL; |
12 | 9 | use View; |
13 | 10 |