Completed
Pull Request — develop (#184)
by Neil
25:03
created
app/Graphs/BaseGraph.php 1 patch
Unused Use Statements   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -23,13 +23,11 @@
 block discarded – undo
23 23
 
24 24
 namespace App\Graphs;
25 25
 
26
+use App\Models\Device;
26 27
 use Carbon\Carbon;
27 28
 use Illuminate\Http\Request;
28
-use Symfony\Component\Process\Process;
29
-use Symfony\Component\Process\ProcessBuilder;
30 29
 use Symfony\Component\Process\Exception\ProcessFailedException;
31
-use App\Models\Device;
32
-use Settings;
30
+use Symfony\Component\Process\Process;
33 31
 
34 32
 class BaseGraph
35 33
 {
Please login to merge, or discard this patch.
app/Graphs/Device_bits.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -23,11 +23,6 @@
 block discarded – undo
23 23
 
24 24
 namespace App\Graphs;
25 25
 
26
-use Illuminate\Http\Request;
27
-use App\Models\Device;
28
-use Settings;
29
-use App\Models\Port;
30
-
31 26
 class Device_bits extends BaseGraph
32 27
 {
33 28
 
Please login to merge, or discard this patch.
app/Graphs/Device_processor.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -23,9 +23,7 @@
 block discarded – undo
23 23
 
24 24
 namespace App\Graphs;
25 25
 
26
-use Illuminate\Http\Request;
27 26
 use App\Models\Device;
28
-use App\Models\Processor;
29 27
 use Settings;
30 28
 
31 29
 class Device_processor extends BaseGraph
Please login to merge, or discard this patch.
app/Graphs/Device_storage.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -23,9 +23,7 @@
 block discarded – undo
23 23
 
24 24
 namespace App\Graphs;
25 25
 
26
-use Illuminate\Http\Request;
27 26
 use App\Models\Device;
28
-use Settings;
29 27
 
30 28
 class Device_storage extends BaseGraph
31 29
 {
Please login to merge, or discard this patch.
app/Graphs/Device_ucd_memory.php 1 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/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.