Completed
Pull Request — develop (#184)
by Tony
23:35
created
app/Http/Controllers/General/SearchController.php 1 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/DataTables/DeviceDataTable.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,6 @@
 block discarded – undo
25 25
 
26 26
 namespace App\DataTables;
27 27
 
28
-use App\Models\DeviceGroup;
29 28
 use App\Models\Device;
30 29
 
31 30
 class DeviceDataTable extends BaseDataTable
Please login to merge, or discard this patch.
app/Http/Controllers/DeviceController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,10 +3,8 @@
 block discarded – undo
3 3
 namespace App\Http\Controllers;
4 4
 
5 5
 use App\DataTables\DeviceDataTable;
6
-use App\DataTables\DeviceGroupDataTable;
7 6
 use App\Models\Device;
8 7
 use App\Models\DeviceGroup;
9
-use App\Models\Port;
10 8
 use Dingo\Api\Http;
11 9
 use Dingo\Api\Routing\Helpers;
12 10
 use Illuminate\Http\Request;
Please login to merge, or discard this patch.
app/Graphs/BaseGraph.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,9 +27,9 @@
 block discarded – undo
27 27
 use App\Models\Device;
28 28
 use Carbon\Carbon;
29 29
 use Illuminate\Http\Request;
30
-use stdClass;
31 30
 use Symfony\Component\Process\Exception\ProcessFailedException;
32 31
 use Symfony\Component\Process\Process;
32
+use stdClass;
33 33
 
34 34
 abstract class BaseGraph
35 35
 {
Please login to merge, or discard this patch.