Completed
Pull Request — develop (#119)
by Neil
03:01
created
app/Api/Controllers/General/ResourceController.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -75,8 +75,6 @@
 block discarded – undo
75 75
     /**
76 76
      * Display the specified resource.
77 77
      *
78
-     * @param Request $request
79
-     * @param string $resource
80 78
      * @return \Illuminate\Http\Response|null
81 79
      */
82 80
     public function show()
Please login to merge, or discard this patch.
app/Http/Controllers/General/SearchController.php 2 patches
Doc Comments   -4 removed lines patch added patch discarded remove patch
@@ -113,7 +113,6 @@  discard block
 block discarded – undo
113 113
     /**
114 114
      * Display the specified resource.
115 115
      *
116
-     * @param  string  $type
117 116
      * @return \Illuminate\Http\JsonResponse|\Illuminate\View\View
118 117
      */
119 118
     public function ipv4(IPv4DataTable $dataTable)
@@ -124,7 +123,6 @@  discard block
 block discarded – undo
124 123
     /**
125 124
      * Display the specified resource.
126 125
      *
127
-     * @param  string  $type
128 126
      * @return \Illuminate\Http\JsonResponse|\Illuminate\View\View
129 127
      */
130 128
     public function ipv6(IPv6DataTable $dataTable)
@@ -135,7 +133,6 @@  discard block
 block discarded – undo
135 133
     /**
136 134
      * Display the specified resource.
137 135
      *
138
-     * @param  string  $type
139 136
      * @return \Illuminate\Http\JsonResponse|\Illuminate\View\View
140 137
      */
141 138
     public function mac(MacDataTable $dataTable)
@@ -146,7 +143,6 @@  discard block
 block discarded – undo
146 143
     /**
147 144
      * Display the specified resource.
148 145
      *
149
-     * @param  string  $type
150 146
      * @return \Illuminate\Http\JsonResponse|\Illuminate\View\View
151 147
      */
152 148
     public function arp(ArpDataTable $dataTable)
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,10 +25,10 @@
 block discarded – undo
25 25
 
26 26
 namespace App\Http\Controllers\General;
27 27
 
28
+use App\DataTables\General\ArpDataTable;
28 29
 use App\DataTables\General\IPv4DataTable;
29 30
 use App\DataTables\General\IPv6DataTable;
30 31
 use App\DataTables\General\MacDataTable;
31
-use App\DataTables\General\ArpDataTable;
32 32
 use App\Http\Controllers\Controller;
33 33
 use Illuminate\Http\Request;
34 34
 
Please login to merge, or discard this patch.
app/Api/Controllers/General/SearchController.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -75,8 +75,6 @@
 block discarded – undo
75 75
     /**
76 76
      * Display the specified resource.
77 77
      *
78
-     * @param Request $request
79
-     * @param string $resource
80 78
      * @return \Illuminate\Http\Response|null
81 79
      */
82 80
     public function show()
Please login to merge, or discard this patch.