@@ -75,8 +75,6 @@ |
||
| 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() |
@@ -113,7 +113,6 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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) |
@@ -25,10 +25,10 @@ |
||
| 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 | |