Completed
Pull Request — develop (#121)
by Neil
03:26
created
app/Http/Controllers/Widgets/WidgetDataController.php 2 patches
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -35,7 +35,6 @@  discard block
 block discarded – undo
35 35
     /**
36 36
      * Display the eventlog widget.
37 37
      *
38
-     * @param  int  $id
39 38
      * @return \Illuminate\Http\JsonResponse|\Illuminate\View\View
40 39
      */
41 40
     public function eventlog(EventlogDataTable $dataTable)
@@ -47,7 +46,6 @@  discard block
 block discarded – undo
47 46
     /**
48 47
      * Display the alerts widget.
49 48
      *
50
-     * @param  int  $id
51 49
      * @return \Illuminate\Http\JsonResponse|\Illuminate\View\View
52 50
      */
53 51
     public function alerts(AlertsDataTable $dataTable)
@@ -58,7 +56,6 @@  discard block
 block discarded – undo
58 56
     /**
59 57
      * Display the availability-map widget.
60 58
      *
61
-     * @param  int  $id
62 59
      * @return \Illuminate\Http\Response|null
63 60
      */
64 61
     public function availability_map()
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 Illuminate\Contracts\Auth\Guard;
6 6
 use Dingo\Api\Http;
7 7
 use Dingo\Api\Routing\Helpers;
8
-use Illuminate\Http\Request;
9 8
 
10 9
 class SetViewVariable
11 10
 {
Please login to merge, or discard this patch.
app/DataTables/BaseDataTable.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
      */
84 84
     public function getAjax()
85 85
     {
86
-       return '';    
86
+        return '';    
87 87
     }
88 88
 
89 89
 }
Please login to merge, or discard this patch.